31 lines
No EOL
723 B
HTML
31 lines
No EOL
723 B
HTML
<!DOCTYPE html>
|
|
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta charset="utf-8">
|
|
|
|
<title>{{ block "block" . }}WissKI Distillery{{ end }}</title>
|
|
{{ block "styles" . }}styles{{ end }}
|
|
</head>
|
|
|
|
<body>
|
|
{{ .BaseContext.DoInitCheck }}
|
|
<header>
|
|
<h1 id="top">{{ template "title" . }}</h1>
|
|
{{ block "header" . }}<!-- no header by default -->{{ end }}
|
|
</header>
|
|
<main>
|
|
<div class="pure-g">
|
|
{{ block "content" . }}content{{ end }}
|
|
</div>
|
|
</main>
|
|
|
|
<footer>
|
|
{{ block "footer" .BaseContext }}
|
|
<!-- no footer -->
|
|
{{ end }}
|
|
</footer>
|
|
|
|
|
|
{{ block "scripts" . }}scripts{{ end }}
|
|
</body> |