fisch/views/partials/base-top.html
2025-03-04 20:18:55 +01:00

20 lines
No EOL
547 B
HTML
Executable file

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>fisch - {{ .Title }}</title>
{{ range .Stylenames }}
<link rel="stylesheet" href="/css/{{ . }}.css">
{{ end }}
</head>
<body>
<header>
<h1>fisch</h1>
<nav>
{{ range .NavItems }}
<a href="{{ .Destination }}" {{ if eq .Destination $.ActivePage }} class="active" {{ end }}>{{ .Caption }}</a>
{{ end }}
</nav>
</header>
<main>