summaryrefslogtreecommitdiff
path: root/layouts/docs/baseof.html
blob: 2741c6087c6d72cb7a566fbbd2910566fc7da523 (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>
{{- partial "docs/shared" -}}
<html>

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

<body>
  <input type="checkbox" style="display: none" id="menu-control" />
  <main class="flex container">

    <aside class="book-menu fixed">
      {{ partial "docs/menu" . }}
    </aside>

    <div class="book-page">
      {{ partial "docs/mobile-header" . }}
      {{ template "main" . }}
      {{ partial "docs/git-footer" . }}
    </div>

    {{ template "toc" . }}
  </main>
  
  {{ partial "docs/inject/body" . }}
  {{ partial "docs/inject/footer" . }}
  {{ template "_internal/google_analytics_async.html" . }}
</body>

</html>