aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/_default/baseof.html
blob: 2ee48da670c706bfde88f09309d18c2a04ab21e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!doctype html>
<html>
  {{- partial "head.html" . -}}
  <body class="w3-theme-light">
    {{- partial "header.html" . -}}
    {{ block "hero" . }}{{ end }}
    <div id="content" class="min-vh-100 avenir">
      {{- block "main" . }}{{- end }}
    </div>
    {{- partial "footer.html" . -}}
  </body>
</html>