40 lines
1.5 KiB
HTML
40 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
|
|
{% block head %}
|
|
<title>{% block title %}{% endblock title%} - Nixie CI</title>
|
|
{% endblock head%}
|
|
</head>
|
|
|
|
<body class="min-h-screen flex flex-col">
|
|
<nav class="bg-orange-300 px-2 py-2 inset-shadow-2xs border-b-2 border-orange-900">
|
|
<div class="mx-auto container flex select-none">
|
|
<a href="/" class="outline-2 outline-gray-800 bg-gray-700 rounded text-white p-2">
|
|
<span class="text-green-200">>_</span>
|
|
Nixie CI ❄️
|
|
</a>
|
|
<div class="grow"></div>
|
|
|
|
<a href="/login" class="outline-2 outline-r-none hover:outline-emerald-900 outline-emerald-700 p-2 select-none rounded-l bg-emerald-600 text-white">Sign in</a>
|
|
<a href="/register" class="outline-2 hover:outline-emerald-900 outline-blue-700 p-2 select-none rounded-r bg-blue-600 text-white">Register</a>
|
|
</div>
|
|
</nav>
|
|
<main class="grow px-2 flex flex-col inset-shadow-sm">
|
|
<div class="grow flex mx-auto container">
|
|
{% block content %}{% endblock content %}
|
|
</div>
|
|
</main>
|
|
<footer class="bg-zinc-300 px-2 min-h-10 py-4">
|
|
<div class="mx-auto container font-bold">
|
|
{% block footer %}
|
|
© Copyright 2026 by Hemera
|
|
{% endblock footer %}
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
|
|
</html>
|