summaryrefslogtreecommitdiff
path: root/layouts/posts/baseof.html
blob: d147c1e156845bd89f5230bfc9009176cf38656e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
{{- partial "docs/shared" -}}
<html>

<head>
  {{ partial "docs/html-head" . }}
  {{ partial "docs/inject/head" . }}
</head>

<body>
  <main>
    <div class="book-posts mx-auto">
      {{ template "main" . }}
    </div>
  </main>
  {{ partial "docs/inject/body" . }}

</body>

</html>