mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-20 20:21:54 +02:00
9 lines
288 B
HTML
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 }}
|