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

31 lines
668 B
HTML
Raw Normal View History

2018-09-05 16:22:04 +02:00
<!DOCTYPE html>
2019-04-23 23:02:06 +02:00
<html lang="{{ .Site.Language.Lang }}">
2018-11-07 12:54:18 +01:00
2018-09-05 16:22:04 +02:00
<head>
{{ partial "docs/html-head" . }}
{{ partial "docs/inject/head" . }}
2018-09-05 16:22:04 +02:00
</head>
<body>
<input type="checkbox" class="hidden" id="toc-control" />
<input type="checkbox" class="hidden" id="menu-control" />
<main class="container">
{{ template "toc" . }}
2018-11-24 15:10:43 +01:00
<div class="book-page">
{{ partial "docs/mobile-header" . }}
2018-11-25 13:30:25 +01:00
{{ template "main" . }}
2019-11-10 00:23:06 +01:00
{{ partial "docs/footer" . }}
2019-04-12 23:06:40 +02:00
{{ partial "docs/inject/footer" . }}
2018-09-05 16:22:04 +02:00
</div>
<aside class="book-menu fixed">
{{ partial "docs/menu" . }}
</aside>
2018-09-30 01:22:39 +02:00
</main>
2018-11-25 13:34:00 +01:00
{{ partial "docs/inject/body" . }}
2018-09-05 16:22:04 +02:00
</body>
2018-11-07 12:54:18 +01:00
2018-11-25 13:30:25 +01:00
</html>