Files
universal_web_loco_rewrite/assets/views/admin/base.html
2026-05-17 15:21:07 +02:00

33 lines
1.4 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}Admin{% endblock title %}</title>
<link href="/static/css/app.css" rel="stylesheet" type="text/css">
<script src="https://unpkg.com/htmx.org@1.9.12"></script>
<style>
.btn { --animation-btn: 0; --btn-focus-scale: 1; }
</style>
</head>
<body class="min-h-screen bg-base-200 font-sans text-base-content antialiased">
<header class="navbar bg-base-100 shadow-sm">
<nav class="mx-auto flex w-full max-w-6xl items-center justify-between gap-2 px-4">
<a href="/admin/dashboard" class="min-w-0 truncate text-lg font-bold">Admin</a>
<div class="flex items-center gap-1">
<a href="/admin/dashboard" class="btn btn-ghost btn-sm">Dashboard</a>
<a href="/admin/blog/articles" class="btn btn-ghost btn-sm">Blog</a>
<a href="/admin/about" class="btn btn-ghost btn-sm">About</a>
<a href="/" class="btn btn-ghost btn-sm">View site</a>
<form method="post" action="/admin/logout">
<button type="submit" class="btn btn-ghost btn-sm">Logout</button>
</form>
</div>
</nav>
</header>
<main class="mx-auto max-w-6xl px-4 py-6">
{% block content %}{% endblock content %}
</main>
</body>
</html>