blowfish/layouts/index.html

10 lines
288 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 }}
2024-10-19 19:32:37 +03:00
{{- partial "newsletter.html" . -}}
2022-09-10 20:05:37 +01:00
{{ end }}