2018-11-24 15:14:43 +01:00
|
|
|
<!DOCTYPE html>
|
2019-04-23 23:02:06 +02:00
|
|
|
<html lang="{{ .Site.Language.Lang }}">
|
2018-11-24 15:14:43 +01:00
|
|
|
|
|
|
|
<head>
|
|
|
|
{{ partial "docs/html-head" . }}
|
|
|
|
{{ partial "docs/inject/head" . }}
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2019-09-01 03:38:16 +02:00
|
|
|
<input type="checkbox" class="hidden" id="menu-control" />
|
2019-01-24 23:30:31 +01:00
|
|
|
<main class="flex container">
|
2019-09-22 13:15:22 +02:00
|
|
|
|
2019-01-24 23:30:31 +01:00
|
|
|
<aside class="book-menu fixed">
|
|
|
|
{{ partial "docs/menu" . }}
|
|
|
|
</aside>
|
|
|
|
|
2019-03-29 16:15:43 +01:00
|
|
|
<div class="book-posts">
|
2019-01-24 23:30:31 +01:00
|
|
|
{{ partial "docs/mobile-header" . }}
|
|
|
|
{{ template "main" . }}
|
2019-09-22 13:15:22 +02:00
|
|
|
{{ partial "docs/git-footer" . }}
|
2019-04-12 23:06:40 +02:00
|
|
|
{{ partial "docs/inject/footer" . }}
|
2019-01-24 23:30:31 +01:00
|
|
|
</div>
|
2019-09-22 13:15:22 +02:00
|
|
|
|
|
|
|
{{ template "toc" . }}
|
2018-11-24 15:14:43 +01:00
|
|
|
</main>
|
|
|
|
|
2018-11-25 11:56:59 +01:00
|
|
|
{{ partial "docs/inject/body" . }}
|
2018-11-24 15:14:43 +01:00
|
|
|
</body>
|
|
|
|
|
2018-11-25 13:30:25 +01:00
|
|
|
</html>
|