hugo-book-theme/layouts/docs/baseof.html
2018-09-12 14:21:46 +02:00

33 lines
No EOL
756 B
HTML

<!DOCTYPE html>
<html>
<head>
{{ partial "docs/html-head" . }}
{{ partial "docs/inject/head" . }}
<title>{{ block "title" . }} {{- .Site.Title -}} {{ end }}</title>
</head>
<body>
<div class="pure-g">
<div class="pure-u book-nav">
{{ partial "docs/nav" . }}
</div>
<div class="pure-u book-content">
<div class="pure-g">
<div class="pure-u book-page markdown">
{{ block "main" . }} {{- .Content -}} {{ end }}
</div>
{{ if and (default true .Site.Params.BookShowTOC) (.Page.TableOfContents) }}
<div class="pure-u book-toc">
{{ partial "docs/toc" . }}
</div>
{{ end }}
</div>
</div>
</div>
{{ partial "docs/inject/body" . }}
</body>
</html>