summaryrefslogtreecommitdiff
path: root/layouts/docs/baseof.html
blob: 9623041218b5d4a1d7f5fabc9982bf7797cdbd3f (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
39
40
41
<!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">
      <nav role="navigation">
        {{ partial "docs/brand" . }}
        {{ partial "docs/inject/menu-before" . }}

        {{ if .Site.Params.BookMenuBundle }}
          {{ partial "docs/menu-bundle" . }}
        {{ else }}
          {{ partial "docs/menu-filetree" . }}
        {{ end }}

        {{ partial "docs/inject/menu-after" . }}
      </nav>
    </aside>

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

    {{ template "toc" . }}
  </main>

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

</html>