c3re-website/themes/hugo-theme-flat/layouts/_default/baseof.html

25 lines
641 B
HTML
Raw Normal View History

2023-12-13 22:55:13 +01:00
<!DOCTYPE html>
<html>
<head>
{{ partial "head.html" . }}
</head>
<body>
{{ partial "header.html" . }}
<main class="main-wrapper">
<div class="main">
{{ block "main" . }}{{ end }}
</div>
<div class="side">
2024-01-08 20:18:33 +01:00
{{/*{{ range .Site.Sections }}
2023-12-13 22:55:13 +01:00
{{ partial "side-recent.html" . }}
{{ end }}
{{ partial "side-categories.html" . }}
{{ partial "side-tags.html" . }}
2024-01-08 20:18:33 +01:00
*/}}
2023-12-13 22:55:13 +01:00
</div>
</main>
{{ partial "footer.html" . }}
</body>
</html>