distorsion.interhacker.space/old-hugo-site/layouts/index.html

30 lines
586 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" . }}
<!-- 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 "body-bottom" . }}
</body>
2025-01-24 23:25:47 +01:00
</html>