Files
MiauInv/frontend/htmx/contents/dash/base.html
2026-06-05 19:09:41 +02:00

27 lines
535 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ .Title }}</title>
<script src="https://unpkg.com/htmx.org@2.0.4"></script>
<link rel="stylesheet" href="/assets/css/dashboard.css">
</head>
<body>
<nav>
<a href="/dashboard">Dashboard</a>
<a href="/items">Inventar</a>
<a href="/projects">Projekte</a>
<a href="/locations">Orte</a>
</nav>
<main>
{{ template "content" . }}
</main>
</body>
</html>