50 lines
No EOL
1.2 KiB
HTML
50 lines
No EOL
1.2 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" />
|
|
<div class="container">
|
|
|
|
<aside class="menu fixed">
|
|
<nav role="navigation">
|
|
<h2 class="brand">
|
|
<a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
|
|
</h2>
|
|
{{ 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="page">
|
|
<div class="header">
|
|
{{ partial "docs/mobile-header" . }}
|
|
</div>
|
|
<article class="markdown">
|
|
{{- .Content -}}
|
|
</article>
|
|
</div>
|
|
|
|
{{ $showToC := default (default true .Site.Params.BookShowToC) .Params.bookshowtoc }}
|
|
{{ if and ($showToC) (.Page.TableOfContents) }}
|
|
<aside class="toc fixed">
|
|
{{ partial "docs/toc" . }}
|
|
</aside>
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
{{ partial "docs/inject/body" . }}
|
|
</body>
|
|
</html> |