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