blowfish/layouts/index.html
2022-10-15 23:14:35 +01:00

8 lines
250 B
HTML

{{ define "main" }}
{{ $partial := print "partials/home/" .Site.Params.homepage.layout ".html" }}
{{ if templates.Exists $partial }}
{{ partial $partial . }}
{{ else }}
{{ partial "partials/home/profile.html" . }}
{{ end }}
{{ end }}