33 lines
937 B
Plaintext
33 lines
937 B
Plaintext
{{define "base"}}
|
||
<!doctype html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="utf-8"/>
|
||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||
<meta name="theme-color" content="#6366f1"/>
|
||
<title>{{block "title" .}}Kücheninventar{{end}}</title>
|
||
<link rel="stylesheet" href="/assets/style.css"/>
|
||
<script defer src="/assets/app.js"></script>
|
||
</head>
|
||
<body>
|
||
<header class="container">
|
||
<div class="brand"><span class="logo">🍳</span> <span>Kücheninventar</span></div>
|
||
<nav>
|
||
<a href="/">Dashboard</a>
|
||
<a href="/products">Produkte</a>
|
||
<a href="/alerts">Warnungen{{if .Alerts}} ({{.Alerts}}){{end}}</a>
|
||
<a href="/shopping-list">Einkaufsliste</a>
|
||
</nav>
|
||
</header>
|
||
<main class="container">
|
||
{{template "flash" .}}
|
||
<div class="content">
|
||
{{block "content" .}}{{end}}
|
||
</div>
|
||
</main>
|
||
<footer class="container muted">
|
||
<p>© {{now | printf "%d"}} – Lokale Demo-App (Go + SQLite). Bilder bleiben lokal.</p>
|
||
</footer>
|
||
</body>
|
||
</html>
|
||
{{end}} |