distorsion.interhacker.space/layouts/index.html
2025-01-24 23:17:58 +01:00

30 lines
No EOL
617 B
HTML

<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
{{ partial "head.html" . }}
<body>
{{ partial "body-top" . }}
<main>
<!-- About -->
{{ partial "about.html" . }}
<!-- Blog -->
{{ if not (eq (len (where .Site.RegularPages "Section" "blog")) 0) }}
{{ partial "blog.html" . }}
{{ end }}
<!-- Members -->
{{ if not (eq (len (where .Site.RegularPages "Section" "members")) 0) }}
{{ partial "members.html" . }}
{{ end }}
<!-- Contact -->
{{ partial "contact.html" . }}
</main>
{{ partial "footer.html" . }}
{{ partial "body-bottom" . }}
</body>
</html>