💄 Custom font added

This commit is contained in:
Rayan fernandes 2021-06-07 09:33:16 +05:30
parent befe2b18b9
commit 78236dea8d
1 changed files with 14 additions and 2 deletions

View File

@ -7,6 +7,18 @@
<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>
<style>
@import url('https://fonts.googleapis.com/css?family=PT+Sans&display=swap');
* {
font-family: 'PT Sans';
}
</style>
<script>
var host_url = document.location.host
</script>
<title>
{% if title %} {{title}} {% else %} Telegram Index {% endif %}
</title>
@ -15,9 +27,9 @@
<body>
<header class="bg-red-600 text-white mb-2 p-4 w-full shadow">
<header class="bg-blue-300 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>
<a href="/" class="text-left text-xl lg:text-2xl xl:text-3xl"> tgindex </a>
{% if authenticated %} <a href="/logout" class="text-right"> Logout </a> {% else %} {%
endif %}
</div>