wisski-cloud-distillery/internal/dis/component/control/static/templates/_base.html
2022-11-16 13:07:16 +01:00

33 lines
No EOL
839 B
HTML

<!DOCTYPE html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ block "block" . }}Distillery Control Page{{ 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>