blowfish/layouts/index.html

9 lines
250 B
HTML
Raw Normal View History

2022-09-10 20:05:37 +01:00
{{ define "main" }}
{{ $partial := print "partials/home/" .Site.Params.homepage.layout ".html" }}
{{ if templates.Exists $partial }}
{{ partial $partial . }}
{{ else }}
2022-10-15 23:14:35 +01:00
{{ partial "partials/home/profile.html" . }}
2022-09-10 20:05:37 +01:00
{{ end }}
{{ end }}