blobfisch/templates/layout.html.hbs
Lukas Langrock 585a3b5d0c
All checks were successful
Continuous Integration / Build & Test (push) Successful in 2m29s
add basic styling with tailwindcss
2024-06-29 00:17:00 +02:00

26 lines
817 B
Handlebars

<!doctype html>
<html>
<head>
<title>Blobfisch</title>
<script src="/assets/tailwind.js"></script>
</head>
<body class="bg-gray-800 text-white">
<nav class="bg-gray-800 py-4 px-8 relative h-16 items-center">
<a href="/" class="rounded-md bg-gray-900 px-3 py-2 text-sm font-medium text-white" aria-current="page">Start</a>
<a href="/ping" class="rounded-md px-3 py-2 text-sm font-medium text-gray-300 hover:bg-gray-700 hover:text-white">Ping</a>
</nav>
<div class="py-2 px-8">
{{~> page}}
</div>
<footer class="pt-10">
<hr>
<p class="pt-5 text-sm text-center text-gray-300">
Blobfisch - early development version
<br>source on <a class="underline decoration-indigo-500" href="https://git.libre.moe/lukas/blobfisch">git.libre.moe</a>
</p>
</footer>
</body>
</html>