20 lines
483 B
HTML
20 lines
483 B
HTML
|
<!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>
|