congo/layouts/index.html

9 lines
247 B
HTML
Raw Normal View History

2021-08-11 05:28:33 +00:00
{{ define "main" }}
2021-08-15 08:41:40 +00:00
{{ $partial := print "partials/home/" .Site.Params.homepage.layout ".html" }}
{{ if templates.Exists $partial }}
{{ partial $partial . }}
{{ else }}
{{ partial "partials/home/page.html" . }}
{{ end }}
2021-08-11 05:28:33 +00:00
{{ end }}