You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
{{ 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 }}
|