21 lines
726 B
HTML
21 lines
726 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
|
|
<script src="https://cdn.fluidplayer.com/v3/current/fluidplayer.min.js"></script>
|
|
|
|
<title>
|
|
{% if title %} {{title}} {% else %} Telegram Index {% endif %}
|
|
</title>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div class="m-auto w-full xl:max-w-screen-xl min-h-screen">
|
|
|
|
<header class="bg-red-600 text-white mb-2 p-4">
|
|
<a href="/" class="text-left text-xl lg:text-2xl xl:text-3xl"> Telegram Index </a>
|
|
</header>
|