hugo-book-theme/layouts/docs/baseof.html

31 lines
660 B
HTML
Raw Normal View History

2018-09-05 16:22:04 +02:00
<!DOCTYPE html>
<html>
<head>
{{ partial "book/html-head" . }}
<title>{{ block "title" . }}{{ .Site.Title }}{{ end }}</title>
2018-09-05 16:22:04 +02:00
</head>
<body>
<div class="pure-g">
2018-09-05 16:22:04 +02:00
<div class="pure-u book-nav">
{{ partial "book/nav" . }}
2018-09-05 16:22:04 +02:00
</div>
<div class="pure-u book-content">
<div class="pure-g">
2018-09-05 16:22:04 +02:00
<div class="pure-u book-page markdown">
{{ block "main" . }}{{ end }}
</div>
{{ if and (default true .Site.Params.BookShowTOC) (.Page.TableOfContents) }}
2018-09-05 16:22:04 +02:00
<div class="pure-u book-toc">
{{ partial "book/toc" . }}
2018-09-05 16:22:04 +02:00
</div>
{{ end }}
2018-09-05 16:22:04 +02:00
</div>
</div>
2018-09-05 16:22:04 +02:00
</div>
</body>
</html>