distorsion.interhacker.space/themes/osprey/layouts/index.html

29 lines
660 B
HTML
Raw Normal View History

2025-01-24 23:17:58 +01:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
{{ partial "head.html" . }}
<body>
{{ partial "body-top" . }}
<main>
<!-- About -->
{{ partial "about.html" . }}
<!-- Gallery -->
{{ if not (eq (len (where .Site.RegularPages "Section" "gallery")) 0) }}
{{ partial "gallery.html" . }}
{{ end }}
<!-- Blog -->
{{ if not (eq (len (where .Site.RegularPages "Section" "blog")) 0) }}
{{ partial "blog.html" . }}
{{ end }}
<!-- Contact -->
{{ partial "contact.html" . }}
</main>
{{ partial "footer.html" . }}
{{ partial "body-bottom" . }}
</body>
</html>