blob: 9bc0b2257edcb0f6cc786ccffa1f7f06d2ffbf99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html>
{{- partial "head.html" . -}}
<body>
{{ if ne .Kind "home" }}
<!-- don't show header on index.html -->
{{- partial "header.html" . -}}
{{ end }}
<main id="site-{{ if eq .Kind "home" }}home{{ else }}{{ .Section }}{{ end }}-page">
{{- block "main" . }}{{- end }}
</main>
{{- partial "footer.html" . -}}
</body>
</html>
|