mirror of
https://github.com/nunocoracao/blowfish.git
synced 2026-01-30 16:31:52 +01:00
9 lines
257 B
HTML
9 lines
257 B
HTML
{{ define "main" }}
|
|
{{ $partial := print "home/" .Site.Params.homepage.layout ".html" }}
|
|
{{ if templates.Exists ( printf "partials/%s" $partial ) }}
|
|
{{ partial $partial . }}
|
|
{{ else }}
|
|
{{ partial "home/profile.html" . }}
|
|
{{ end }}
|
|
{{ end }}
|