Some checks failed
Deploy to NAS / deploy (push) Failing after 26s
- Public feed (/) with infinite scroll via Intersection Observer - Self-registration (/register) - Admin area (/admin/entries, /admin/users) with user management - journal_entries: visibility (public/private) + hashtags fields - users: is_admin flag - DB schema updated (recreate DB to apply) - CI: run go test via docker run (golang:1.25-alpine) — fixes 'go not found' Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
714 B
HTML
26 lines
714 B
HTML
{{define "admin_base"}}<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{block "admin_title" .}}Admin{{end}}</title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.classless.slate.min.css">
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<main class="container">
|
|
<nav>
|
|
<strong>Admin</strong>
|
|
<span>
|
|
<a href="/admin/entries">Einträge</a> ·
|
|
<a href="/admin/users">Benutzer</a> ·
|
|
<a href="/days">← App</a>
|
|
</span>
|
|
</nav>
|
|
{{block "admin_content" .}}{{end}}
|
|
</main>
|
|
{{block "admin_scripts" .}}{{end}}
|
|
</body>
|
|
</html>
|
|
{{end}}
|