hugo-book/layouts/docs/baseof.html

32 lines
638 B
HTML
Raw Normal View History

2018-09-05 14:22:04 +00:00
<!DOCTYPE html>
2018-09-17 23:35:54 +00:00
{{- partial "docs/shared" -}}
2018-09-05 14:22:04 +00:00
<html>
2018-11-07 11:54:18 +00:00
2018-09-05 14:22:04 +00:00
<head>
{{ partial "docs/html-head" . }}
{{ partial "docs/inject/head" . }}
2018-09-05 14:22:04 +00:00
</head>
<body>
<input type="checkbox" style="display: none" id="menu-control" />
2018-11-24 14:10:43 +00:00
<main class="flex container">
2018-11-24 14:10:43 +00:00
<aside class="book-menu fixed">
2019-01-24 22:30:31 +00:00
{{ partial "docs/menu" . }}
2018-09-27 23:12:07 +00:00
</aside>
2018-11-24 14:10:43 +00:00
<div class="book-page">
{{ partial "docs/mobile-header" . }}
2018-11-25 12:30:25 +00:00
{{ template "main" . }}
2018-12-03 07:21:05 +00:00
{{ partial "docs/git-footer" . }}
2018-09-05 14:22:04 +00:00
</div>
2018-11-25 12:30:25 +00:00
{{ template "toc" . }}
2018-09-29 23:22:39 +00:00
</main>
2018-11-25 12:34:00 +00:00
{{ partial "docs/inject/body" . }}
{{ template "_internal/google_analytics_async.html" . }}
2018-09-05 14:22:04 +00:00
</body>
2018-11-07 11:54:18 +00:00
2018-11-25 12:30:25 +00:00
</html>