mirror of
https://gitlab.com/octospacc/TelegramIndex-Fork.git
synced 2025-06-05 22:09:12 +02:00
26 lines
863 B
HTML
26 lines
863 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>
|
|
|
|
<header class="bg-red-600 text-white mb-2 p-4 w-full shadow">
|
|
<div class="mx-auto flex justify-between content-center max-w-screen-xl">
|
|
<a href="/" class="text-left text-xl lg:text-2xl xl:text-3xl"> Telegram Index </a>
|
|
{% if authenticated %} <a href="/logout" class="text-right"> Logout </a> {% else %} {%
|
|
endif %}
|
|
</div>
|
|
|
|
</header>
|
|
<div class="m-auto w-full min-h-screen max-w-screen-xl"> |