2021-05-22 16:00:08 +02:00
|
|
|
</div>
|
|
|
|
<footer class="w-full my-4 py-4 bg-gray-300 xl:text-xl">
|
2021-06-22 17:07:07 +02:00
|
|
|
<div class="mx-auto text-center text-black max-w-screen-xl">
|
|
|
|
<a href="https://github.com/odysseusmax/tg-index" target="_blank"> @odysseusmax </a>
|
|
|
|
</div>
|
2021-05-22 16:00:08 +02:00
|
|
|
</footer>
|
2021-06-21 14:05:07 +02:00
|
|
|
<script>
|
2021-06-22 17:07:07 +02:00
|
|
|
function toggleTheme() {
|
2021-06-21 14:05:07 +02:00
|
|
|
element = document.documentElement;
|
|
|
|
if (element.className == "light") {
|
|
|
|
element.className = "dark";
|
|
|
|
localStorage.theme = 'dark';
|
|
|
|
} else {
|
|
|
|
element.className = "light";
|
|
|
|
localStorage.theme = 'light';
|
|
|
|
}
|
|
|
|
}
|
2021-05-22 16:00:08 +02:00
|
|
|
|
2021-06-21 14:05:07 +02:00
|
|
|
function chatImgAlt() {
|
|
|
|
document.getElementById('chatimg').src = 'https://s3.imgcdn.dev/nWNtu.jpg'
|
|
|
|
}
|
2021-06-22 17:07:07 +02:00
|
|
|
|
2021-06-21 14:05:07 +02:00
|
|
|
</script>
|
2021-05-22 16:00:08 +02:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|