18 lines
346 B
HTML
18 lines
346 B
HTML
<!doctype html>
|
|
<html lang="en" class="h-100">
|
|
|
|
{{- partial "head.html" . }}
|
|
|
|
<body class="d-flex md h-100 container-sm text-white bg-dark">
|
|
<div class="d-flex w-100 h-100 p-3 mx-auto flex-column">
|
|
|
|
{{- partial "header.html" . }}
|
|
|
|
<div id="content">
|
|
{{- block "main" . }}{{ end }}
|
|
</div>
|
|
|
|
{{- partial "footer.html" . }}
|
|
|
|
</body>
|
|
</html> |