102 lines
5.3 KiB
Twig
102 lines
5.3 KiB
Twig
{###########################################################################
|
||
# Copyright (c) 2025, Антон Аксенов
|
||
# This file is part of iptv.axenov.dev web interface
|
||
# MIT License: https://git.axenov.dev/IPTV/web/src/branch/master/LICENSE
|
||
###########################################################################}
|
||
|
||
<!DOCTYPE html>
|
||
<html lang="ru">
|
||
<head>
|
||
<title>{% block title %}{{ config('app.title') }}{% endblock %}</title>
|
||
<meta charset="utf-8">
|
||
<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}
|
||
.boosty{vertical-align:baseline;float:left;display:inline;width:20px}
|
||
</style>
|
||
<script async type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
|
||
<script async nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script>
|
||
<link href="/css/bootstrap.min.css" rel="stylesheet">
|
||
<link rel="shortcut icon" href="/favicon/favicon.ico" />
|
||
<link rel="icon" type="image/png" sizes="96x96" href="/favicon/favicon-96x96.png" />
|
||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png" />
|
||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png" />
|
||
<link rel="icon" type="image/svg+xml" href="/favicon/favicon.svg" />
|
||
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png" />
|
||
<meta name="apple-mobile-web-app-title" content="IPTV Плейлисты" />
|
||
<link rel="manifest" href="/favicon/site.webmanifest" />
|
||
<meta name="msapplication-TileColor" content="#00aba9">
|
||
<meta name="msapplication-TileImage" content="/favicon/mstile-150x150.png">
|
||
<meta name="theme-color" content="#212529">
|
||
{% block head %}{% endblock %}
|
||
</head>
|
||
<body class="bg-dark text-light">
|
||
<div class="container col-lg-10 mx-auto">
|
||
<header>
|
||
<nav class="navbar navbar-expand-lg navbar-dark">
|
||
<a class="navbar-brand" href="/" title="На главную">
|
||
<img src="/favicon/favicon-32x32.png" class="d-inline-block px-lg-1" alt="Логотип проекта - emoji телевизора"/>
|
||
{{ config('app.title') }}
|
||
</a>
|
||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
||
<span class="navbar-toggler-icon"></span>
|
||
</button>
|
||
<div class="collapse navbar-collapse" id="navbarNav">
|
||
<ul class="navbar-nav">
|
||
<li class="nav-item">
|
||
<a class="nav-link" href="{{ base_url() }}">Главная</a>
|
||
</li>
|
||
<li class="nav-item">
|
||
<a class="nav-link" href="/faq">FAQ</a>
|
||
</li>
|
||
<li class="nav-item">
|
||
<a class="nav-link" href="https://git.axenov.dev/IPTV">Исходники</a>
|
||
</li>
|
||
<li class="nav-item">
|
||
<a class="nav-link" href="https://axenov.dev">axenov.dev</a>
|
||
</li>
|
||
<li class="nav-item">
|
||
<a class="nav-link" href="https://t.me/iptv_aggregator">Telegram</a>
|
||
</li>
|
||
<li class="nav-item">
|
||
<a class="nav-link" href="https://boosty.to/anthonyaxenov">
|
||
<img class="boosty" src="/boosty.svg" alt="Boosty">
|
||
Boosty
|
||
</a>
|
||
</li>
|
||
<li class="nav-item">
|
||
<a class="nav-link" href="https://yoomoney.ru/to/41001685237530">
|
||
<ion-icon name="card-outline"></ion-icon>
|
||
Yoomoney
|
||
</a>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
</nav>
|
||
</header>
|
||
|
||
<section class="container h-100 pt-lg-3 px-0 pb-0">
|
||
{% block header %}{% endblock %}
|
||
{% block content %}{% endblock %}
|
||
</section>
|
||
|
||
<footer class="py-4 text-center">
|
||
<script src="/js/bootstrap.bundle.min.js"></script>
|
||
{% block footer %}{% endblock %}
|
||
<a href="/faq">FAQ</a> | <a
|
||
href="https://git.axenov.dev/IPTV">Исходники</a> | <a
|
||
href="https://axenov.dev">axenov.dev</a> | <a
|
||
href="https://t.me/iptv_aggregator">Telegram</a><br>
|
||
<a class="small text-secondary"
|
||
href="https://git.axenov.dev/IPTV/web/releases/tag/v{{ version() }}"
|
||
target="_blank"
|
||
>v{{ version() }}</a>
|
||
</footer>
|
||
</div>
|
||
|
||
{% include("custom.twig") ignore missing %}
|
||
</body>
|
||
</html>
|