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-03 02:33:46 +02:00
|
|
|
{{ partialCached "structure/header" . }}
|
|
|
|
{{ partial "structure/submenu" . }}
|
2022-03-27 03:13:08 +02:00
|
|
|
</header>
|
2021-10-23 22:20:01 +02:00
|
|
|
<div class="content">
|
|
|
|
<main>
|
|
|
|
<h1>
|
|
|
|
{{ block "title" . -}}{{- end }}
|
|
|
|
</h1>
|
|
|
|
{{ 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>
|