fisch/views/partials/base-top.html

20 lines
483 B
HTML
Raw Normal View History

2025-02-07 18:42:50 +01:00
<!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 }}">{{ .Caption }}</a>
{{ end }}
</nav>
</header>
<main>