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

28 lines
865 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">
2022-04-09 01:36:05 +02:00
<header>
{{ partialCached "structure/header" . }}
{{ partial "structure/submenu" . }}
</header>
<div class="content">
<main>
{{ block "title" . -}}{{- end }}
2022-04-09 21:34:04 +02:00
{{ block "calc" . -}}{{- end }}
2022-04-09 01:36:05 +02:00
{{ block "content" . -}}{{- end }}
</main>
<aside class="right-sidebar">
{{ block "sidebar" . -}}{{- end }}
</aside>
2021-10-23 22:20:01 +02:00
</div>
2022-04-09 01:36:05 +02:00
{{ block "pagefooter" . -}}{{- end }}
<footer>
{{- partial "contentlayouts/footer" . -}}
</footer>
</div>
2021-10-23 22:20:01 +02:00
</body>
2022-04-06 17:51:02 +02:00
</html>