mirror of
https://github.com/anthonyaxenov/iptv.git
synced 2024-11-21 21:14:46 +00:00
Кастомные блоки
This commit is contained in:
parent
a868b677f0
commit
d2bc1678f5
2
.gitignore
vendored
2
.gitignore
vendored
@ -3,6 +3,8 @@
|
||||
/downloaded
|
||||
/src/cache/*
|
||||
/src/vendor
|
||||
/src/views/custom/*
|
||||
!/src/views/custom/custom.twig.example
|
||||
*.log
|
||||
.env
|
||||
*.m3u
|
||||
|
0
src/views/custom/.gitkeep
Normal file
0
src/views/custom/.gitkeep
Normal file
6
src/views/custom/custom.twig.example
Normal file
6
src/views/custom/custom.twig.example
Normal file
@ -0,0 +1,6 @@
|
||||
{# Файл для включения кастомных блоков #}
|
||||
|
||||
{% block head %}{# ваш код здесь #}{% endblock %}
|
||||
{% block header %}{# ваш код здесь #}{% endblock %}
|
||||
{% block content %}{# ваш код здесь #}{% endblock %}
|
||||
{% block footer %}{# ваш код здесь #}{% endblock %}
|
@ -6,7 +6,6 @@
|
||||
<meta name="description" content="Самообновляемые бесплатные IPTV-плейлисты для домашнего просмотра по коротким ссылкам, списки каналов, проверка доступности">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
|
||||
<style>.cursor-pointer{cursor:pointer}</style>
|
||||
<link href="{{ base_url('css/bootstrap.min.css') }}" rel="stylesheet">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="{{ base_url('/favicon/apple-touch-icon.png') }}">
|
||||
@ -17,8 +16,7 @@
|
||||
<meta name="msapplication-TileColor" content="#00aba9">
|
||||
<meta name="msapplication-TileImage" content="{{ base_url('/favicon/mstile-144x144.png') }}">
|
||||
<meta name="theme-color" content="#212529">
|
||||
|
||||
|
||||
{% block head %}{% endblock %}
|
||||
</head>
|
||||
<body class="bg-dark text-light">
|
||||
<div class="container col-lg-8 mx-auto">
|
||||
@ -67,5 +65,6 @@
|
||||
href="https://axenov.dev">axenov.dev</a>
|
||||
</footer>
|
||||
</div>
|
||||
{% include "custom/custom.twig" %}
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user