Files
PythonFlaskAusgaben/files/templates/base.html
jonnybravo 5e6d25703c
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 39s
test
2026-07-08 12:19:52 +02:00

33 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ sitename }}</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-slate-50 text-slate-800 min-h-screen flex flex-col">
<header class="bg-indigo-600 text-white shadow">
<div class="max-w-4xl mx-auto px-4 py-6 flex justify-between items-center">
<h1 class="text-2xl font-bold tracking-tight">
<a href="/">{{ sitename }}</a>
</h1>
<nav>
<a href="/add_ausgabe" class="bg-indigo-500 hover:bg-indigo-400 text-white font-semibold py-2 px-4 rounded-lg transition-colors shadow">
+ Ausgabe hinzufügen
</a>
</nav>
</div>
</header>
<main class="flex-grow max-w-4xl w-full mx-auto px-4 py-8">
{% block body %}
{% endblock %}
</main>
<footer class="bg-slate-100 border-t border-slate-200 py-6 text-center text-sm text-slate-500 mt-auto">
<p>&copy; 2026 {{ sitename }}. Alle Rechte vorbehalten.</p>
</footer>
</body>
</html>