hugo-book-theme/layouts/docs/baseof.html
2018-11-25 11:56:59 +01:00

48 lines
No EOL
1.1 KiB
HTML

<!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" . }}
<article class="markdown">
{{- .Content -}}
</article>
</div>
{{ $showToC := default (default true .Site.Params.BookShowToC) .Params.bookshowtoc }}
{{ if and ($showToC) (.Page.TableOfContents) }}
<aside class="book-toc fixed">
{{ partial "docs/toc" . }}
</aside>
{{ end }}
{{ partial "docs/inject/body" . }}
{{ template "_internal/google_analytics_async.html" . }}
</main>
</body>
</html>