lugo/layouts/_default/baseof.html

27 lines
579 B
HTML
Raw Normal View History

2022-04-14 20:07:48 +00:00
<!DOCTYPE html>
<html lang="{{ .Site.Language }}">
2024-04-01 14:46:28 +00:00
{{ partial "head.html" . }}
<body>
{{ block "header" . }}
{{ partial "header.html" . }}
{{ end }}
<main>
2024-04-01 16:25:29 +00:00
<section>
2024-04-01 14:46:28 +00:00
<div class="article-header">
2025-01-04 07:31:14 +00:00
<h1 class="spaced">
2024-04-01 14:46:28 +00:00
{{ .Page.Title }}
2025-01-04 07:31:14 +00:00
</h1>
2024-04-01 14:46:28 +00:00
</div>
<article>
{{ block "main" . }}
{{ .Content }}
{{ end }}
</article>
2024-04-01 16:25:29 +00:00
</section>
2024-04-01 14:46:28 +00:00
{{ block "footer" . }}
{{ partial "footer.html" . }}
{{ end }}
</main>
2022-09-20 21:10:53 +00:00
</body>
2025-01-04 07:31:14 +00:00
</html>