20 lines
No EOL
547 B
HTML
Executable file
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> |