blowfish/layouts/index.html
2024-10-20 12:31:12 +03:00

9 lines
288 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 }}
{{- partial "newsletter.html" . -}}
{{ end }}