💄 Custom font added
This commit is contained in:
parent
befe2b18b9
commit
78236dea8d
|
@ -7,6 +7,18 @@
|
||||||
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
|
<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>
|
<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>
|
<title>
|
||||||
{% if title %} {{title}} {% else %} Telegram Index {% endif %}
|
{% if title %} {{title}} {% else %} Telegram Index {% endif %}
|
||||||
</title>
|
</title>
|
||||||
|
@ -15,9 +27,9 @@
|
||||||
|
|
||||||
<body>
|
<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">
|
<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 %} {%
|
{% if authenticated %} <a href="/logout" class="text-right"> Logout </a> {% else %} {%
|
||||||
endif %}
|
endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue