forked from Bunteshaus/bunteshaus.de
33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{{- partial "head.html" . -}}
|
|
<body>
|
|
<div class="container">
|
|
<header>
|
|
{{ partialCached "header" . }}
|
|
<div>
|
|
<details>
|
|
<summary style="list-style: none; text-align: right;">☰</summary>
|
|
<p>
|
|
{{ partial "sidebar.html" . }}
|
|
</p>
|
|
</details>
|
|
</div>
|
|
</header>
|
|
<div class="content">
|
|
<main>
|
|
<h1>
|
|
{{ block "title" . -}}{{- end }}
|
|
</h1>
|
|
{{ block "main" . -}}{{- end }}
|
|
</main>
|
|
<aside class="right-sidebar">
|
|
{{ block "sidebar" . -}}{{- end }}
|
|
</aside>
|
|
</div>
|
|
<footer>
|
|
{{- partial "footer" . -}}
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html> |