34 lines
No EOL
861 B
HTML
34 lines
No EOL
861 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>
|
|
<header>
|
|
<h1 id="top">{{ template "title" . }}</h1>
|
|
{{ block "header/time" . }}
|
|
{{ if .Time }}
|
|
<small>Generated at <code class="date">{{ .Time.Format "2006-01-02T15:04:05Z07:00" }}</code></small>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ block "header" . }}header{{ end }}
|
|
</header>
|
|
<main>
|
|
<div class="pure-g">
|
|
{{ block "content" . }}content{{ end }}
|
|
</div>
|
|
</main>
|
|
|
|
{{ if .Time }}
|
|
<footer>
|
|
Generated at <code>{{ .Time }}</code>
|
|
</footer>
|
|
{{ end }}
|
|
|
|
{{ block "scripts" . }}scripts{{ end }}
|
|
</body> |