44 lines
1.3 KiB
HTML
Raw Normal View History

2020-08-10 07:27:52 +00:00
<!doctype html>
<html lang="en">
2020-09-20 22:08:52 +05:30
2021-05-22 19:30:08 +05:30
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2020-09-20 22:08:52 +05:30
2021-05-22 19:30:08 +05:30
<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>
2020-09-20 22:08:52 +05:30
2021-06-07 09:33:16 +05:30
<style>
@import url('https://fonts.googleapis.com/css?family=PT+Sans&display=swap');
* {
font-family: 'PT Sans';
}
</style>
<script>
2021-06-11 23:34:40 +05:30
window.onload = () => {
// set title as host url
const titleA = document.getElementById("title-a")
titleA.innerHTML = document.location.host
}
2021-06-07 09:33:16 +05:30
</script>
2021-05-22 19:30:08 +05:30
<title>
{% if title %} {{title}} {% else %} Telegram Index {% endif %}
</title>
2020-09-20 22:08:52 +05:30
2021-05-22 19:30:08 +05:30
</head>
2020-08-10 07:27:52 +00:00
2021-05-22 19:30:08 +05:30
<body>
2021-06-07 09:33:16 +05:30
<header class="bg-blue-300 text-white mb-2 p-4 w-full shadow">
2021-05-22 19:30:08 +05:30
<div class="mx-auto flex justify-between content-center max-w-screen-xl">
2021-06-11 23:34:40 +05:30
<a href="/" id="title-a" class="text-left text-xl lg:text-2xl xl:text-3xl"> Telegram index </a>
2021-05-22 19:30:08 +05:30
{% 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">