aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/_default/baseof.html
blob: 3ee2e03e0eef608c14055238144469521cc98804 (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
<!DOCTYPE html>
<html lang="en-us" itemscope itemtype="http://schema.org/BlogPosting">
  <head>
    <title>
      {{- block "title" . -}}{{- end -}}
      {{- partial "site-title.html" . -}}
    </title>
    <meta name="description" content="{{- partial "site-description.html" . -}}">
    {{- partial "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 "footer.html" . -}}
      </main>
    </column-middle>

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