2018-09-05 16:22:04 +02:00
|
|
|
<!DOCTYPE html>
|
2018-09-18 01:35:54 +02:00
|
|
|
{{- partial "docs/shared" -}}
|
2018-09-05 16:22:04 +02:00
|
|
|
<html>
|
2018-11-07 12:54:18 +01:00
|
|
|
|
2018-09-05 16:22:04 +02:00
|
|
|
<head>
|
2018-09-12 14:21:46 +02:00
|
|
|
{{ partial "docs/html-head" . }}
|
|
|
|
{{ partial "docs/inject/head" . }}
|
2018-09-05 16:22:04 +02:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2018-09-26 00:12:56 +02:00
|
|
|
<input type="checkbox" style="display: none" id="menu-control" />
|
2018-11-24 15:10:43 +01:00
|
|
|
<main class="flex container">
|
2018-09-11 16:51:27 +02:00
|
|
|
|
2018-11-24 15:10:43 +01:00
|
|
|
<aside class="book-menu fixed">
|
2018-09-26 00:12:56 +02:00
|
|
|
<nav role="navigation">
|
2018-09-30 01:04:22 +02:00
|
|
|
{{ partial "docs/brand" . }}
|
2018-09-28 01:12:07 +02:00
|
|
|
{{ partial "docs/inject/menu-before" . }}
|
2018-11-07 12:54:18 +01:00
|
|
|
|
2018-09-26 00:12:56 +02:00
|
|
|
{{ if .Site.Params.BookMenuBundle }}
|
|
|
|
{{ partial "docs/menu-bundle" . }}
|
|
|
|
{{ else }}
|
|
|
|
{{ partial "docs/menu-filetree" . }}
|
|
|
|
{{ end }}
|
2018-11-07 12:54:18 +01:00
|
|
|
|
2018-09-28 01:12:07 +02:00
|
|
|
{{ partial "docs/inject/menu-after" . }}
|
2018-09-26 00:12:56 +02:00
|
|
|
</nav>
|
2018-09-28 01:12:07 +02:00
|
|
|
</aside>
|
2018-09-26 00:12:56 +02:00
|
|
|
|
2018-11-24 15:10:43 +01:00
|
|
|
<div class="book-page">
|
|
|
|
{{ partial "docs/mobile-header" . }}
|
2018-11-25 13:30:25 +01:00
|
|
|
{{ template "main" . }}
|
2018-09-05 16:22:04 +02:00
|
|
|
</div>
|
2018-09-11 16:51:27 +02:00
|
|
|
|
2018-11-25 13:30:25 +01:00
|
|
|
{{ template "toc" . }}
|
2018-09-30 01:22:39 +02:00
|
|
|
</main>
|
2018-11-25 13:34:00 +01:00
|
|
|
|
|
|
|
{{ partial "docs/inject/body" . }}
|
|
|
|
{{ template "_internal/google_analytics_async.html" . }}
|
2018-09-05 16:22:04 +02:00
|
|
|
</body>
|
2018-11-07 12:54:18 +01:00
|
|
|
|
2018-11-25 13:30:25 +01:00
|
|
|
</html>
|