aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/_default/baseof.html
blob: d42a95444c5248920276f2a1f3f51a0c8dad85eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html
  lang="en-us"
  data-kind="{{ .Page.Kind }}"
  data-type="{{ .Page.Type }}"
  itemscope=""
  itemtype="http://schema.org/BlogPosting"
>
  <head>
    <title>
      {{- block "title" . -}}{{- end -}}
      {{- partial "base-title.html" . -}}
    </title>
    <meta name="description" content="{{- partial "base-description.html" . -}}" />
    {{- partial "base-head.html" . -}}
    {{- block "styles" . -}}{{- end -}}
  </head>
  <body>
    <skip-link>
      <a href="#main">Skip to main content</a>
    </skip-link>

    <column-left>
      {{- partial "navigator-left.html" . -}}
    </column-left>

    <column-middle>
      <main id="main">
        {{- block "middle" . -}}{{- end -}}
        {{- partial "base-footer.html" . -}}
      </main>
    </column-middle>

    <column-right>
      {{- block "right" . -}}{{- end -}}
    </column-right>
  </body>
</html>