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

26 lines
862 B
HTML
Raw Normal View History

2021-10-23 22:20:01 +02:00
<!DOCTYPE html>
<html>
2022-04-03 02:33:46 +02:00
{{- partial "structure/head.html" . -}}
2022-03-27 21:17:25 +02:00
{{ block "css" . -}}{{- end }}
2021-10-23 22:20:01 +02:00
<body>
<div class="container">
<header>
2022-04-05 14:04:14 +02:00
{{ partial "structure/header" . }}
2022-04-03 02:33:46 +02:00
{{ partial "structure/submenu" . }}
2022-03-27 03:13:08 +02:00
</header>
2021-10-23 22:20:01 +02:00
<div class="content">
<main>
2022-04-05 14:49:37 +02:00
{{ block "title" . -}}{{- end }}
2021-10-23 22:20:01 +02:00
{{ block "main" . -}}{{- end }}
</main>
2022-03-27 03:13:08 +02:00
<aside class="right-sidebar">
2022-03-26 20:28:14 +01:00
{{ block "sidebar" . -}}{{- end }}
2022-03-27 03:13:08 +02:00
</aside>
2021-10-23 22:20:01 +02:00
</div>
2022-04-03 21:08:42 +02:00
{{ block "ab" . -}}{{- end }}
2021-10-23 22:20:01 +02:00
<footer>
2022-04-04 20:35:39 +02:00
{{- partial "structure/footer" . -}}
2021-10-23 22:20:01 +02:00
</footer>
</div>
</body>
</html>