blob: 9426b126d04b21e0c09fd0c26f5e844883006170 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
{{- 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>
{{ if ne .Kind "home" }}
{{- partial "footer.html" . -}}
{{ end }}
</body>
</html>
|