26 lines
615 B
HTML
26 lines
615 B
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport"
|
||
content="width=device-width, initial-scale=1.0">
|
||
<meta http-equiv="X-UA-Compatible"
|
||
content="ie=edge">
|
||
<title>ТВ</title>
|
||
<link rel="stylesheet"
|
||
href="/schedule/static/style.css?v=1">
|
||
<link rel="icon"
|
||
href="/schedule/static/favicon.ico"
|
||
type="image/x-icon">
|
||
</head>
|
||
|
||
<body class="app-container">
|
||
<ul>
|
||
{% for channel in channels %}
|
||
<li><a href="schedule/{{channel}}">{{channel}}</a></li>
|
||
{% endfor %}
|
||
</ul>
|
||
</body>
|
||
|
||
</html> |