bunteshaus.de/themes/buha/layouts/_default/baseof.html

26 lines
868 B
HTML
Raw Normal View History

2021-10-23 22:20:01 +02:00
<!DOCTYPE html>
<html>
{{- partial "head.html" . -}}
<body>
<div class="container">
<header>
2021-10-23 23:03:25 +02:00
{{ partialCached "header" . }}
2021-10-23 22:20:01 +02:00
</header>
2022-03-27 00:43:25 +01:00
<div style="display: flex; justify-content: flex-end; flex-direction: row; height: 1rem;">
{{ block "nav2" . -}}{{- end }}
</div>
2021-10-23 22:20:01 +02:00
<div class="content">
<main>
<h1>
{{ block "title" . -}}{{- end }}
</h1>
{{ block "main" . -}}{{- end }}
</main>
2022-03-26 20:28:14 +01:00
{{ block "sidebar" . -}}{{- end }}
2021-10-23 22:20:01 +02:00
</div>
<footer>
{{- partial "footer" . -}}
</footer>
</div>
</body>
</html>