Downloaded theme

This commit is contained in:
2026-03-23 18:35:59 +01:00
parent 326fab0e42
commit d091efd432
86 changed files with 14512 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{{ 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 }}