Finalize framework: Fix submodules and clean artifacts

This commit is contained in:
2026-03-25 00:54:34 +00:00
commit 0eee1e0771
34 changed files with 2250 additions and 0 deletions

8
layouts/index.html Normal file
View File

@@ -0,0 +1,8 @@
{{ define "main" }}
{{ $partial := print "home/" .Site.Params.homepage.layout ".html" }}
{{ if templates.Exists ( printf "partials/%s" $partial ) }}
{{ partial $partial . }}
{{ else }}
{{ partial "home/profile.html" . }}
{{ end }}
{{ end }}