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

28 lines
570 B
HTML
Raw Normal View History

2018-11-24 15:14:43 +01:00
<!DOCTYPE html>
{{- partial "docs/shared" -}}
<html>
<head>
{{ partial "docs/html-head" . }}
{{ partial "docs/inject/head" . }}
</head>
<body>
2019-01-24 23:30:31 +01:00
<input type="checkbox" style="display: none" id="menu-control" />
<main class="flex container">
<aside class="book-menu fixed">
{{ partial "docs/menu" . }}
</aside>
<div class="book-posts">
2019-01-24 23:30:31 +01:00
{{ partial "docs/mobile-header" . }}
{{ template "main" . }}
</div>
2018-11-24 15:14:43 +01:00
</main>
{{ partial "docs/inject/body" . }}
{{ template "_internal/google_analytics_async.html" . }}
2018-11-24 15:14:43 +01:00
</body>
2018-11-25 13:30:25 +01:00
</html>