Files
web/themes/minimal-black/layouts/index.html
2026-03-23 18:35:59 +01:00

13 lines
390 B
HTML

{{ define "main" }}
<section class="layout-page">
<div class="page-int section-stack section-stack--home">
{{ $default := slice "hero" "now" "tech-marquee" "projects" "posts" }}
{{ $sections := .Site.Params.home.sections | default $default }}
{{ range $sections }}
{{ partial (printf "home/%s.html" .) $ }}
{{ end }}
</div>
</section>
{{ end }}