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

28 lines
594 B
HTML
Raw Normal View History

2018-11-24 15:14:43 +01:00
<!DOCTYPE html>
2019-04-23 23:02:06 +02:00
<html lang="{{ .Site.Language.Lang }}">
2018-11-24 15:14:43 +01:00
<head>
{{ partial "docs/html-head" . }}
{{ partial "docs/inject/head" . }}
</head>
<body>
<input type="checkbox" id="menu-control" />
2019-01-24 23:30:31 +01:00
<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" . }}
2019-04-12 23:06:40 +02:00
{{ partial "docs/inject/footer" . }}
2019-01-24 23:30:31 +01:00
</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>