test
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 39s

This commit is contained in:
jonnybravo
2026-07-08 12:19:52 +02:00
parent e8b785d508
commit 5e6d25703c
5 changed files with 160 additions and 62 deletions

View File

@@ -1,11 +1,32 @@
<!DOCTYPE html>
<html>
<html lang="de">
<head>
<title> {{ sitename }} </title>
<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>
<h3> {{ sitename }} </h3>
<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>