summaryrefslogtreecommitdiff
path: root/layouts/_default/baseof.html
blob: ad5c70f2e4ff898b0076f49fa589fd002e2d0d60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!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>

    {{- partial "footer.html" . -}}
  </body>
</html>