hugo-book-theme/layouts/_default/baseof.html
Shane Liesegang bce8940c62 Removing flex from <main> for sake of print layout (#129)
* Removing flex from <main> for sake of print layout
* trimming excess whitespace
2020-01-17 20:32:36 +01:00

30 lines
668 B
HTML

<!DOCTYPE html>
<html lang="{{ .Site.Language.Lang }}">
<head>
{{ partial "docs/html-head" . }}
{{ partial "docs/inject/head" . }}
</head>
<body>
<input type="checkbox" class="hidden" id="toc-control" />
<input type="checkbox" class="hidden" id="menu-control" />
<main class="container">
{{ template "toc" . }}
<div class="book-page">
{{ partial "docs/mobile-header" . }}
{{ template "main" . }}
{{ partial "docs/footer" . }}
{{ partial "docs/inject/footer" . }}
</div>
<aside class="book-menu fixed">
{{ partial "docs/menu" . }}
</aside>
</main>
{{ partial "docs/inject/body" . }}
</body>
</html>