2022-07-09 08:37:39 +00:00
|
|
|
{{- $base := .base }}
|
|
|
|
{{- $page := .page }}
|
|
|
|
{{- $parameter := .parameter }}
|
2022-07-10 22:59:26 +00:00
|
|
|
{{- if or (not (partial "output-format.html" $page)) (not (fileExists (printf "/layouts/partials/%s.%s.html" $base ((partial "output-format.html" $page) | lower)))) }}
|
2022-07-09 08:37:39 +00:00
|
|
|
{{- if (fileExists (printf "/layouts/partials/%s.html" $base)) }}
|
|
|
|
{{- partial (printf "%s.html" $base) $parameter }}
|
|
|
|
{{- end }}
|
|
|
|
{{- else }}
|
2022-07-10 22:59:26 +00:00
|
|
|
{{- partial (printf "%s.%s.html" $base ((partial "output-format.html" $page) | lower)) $parameter }}
|
2022-07-09 08:37:39 +00:00
|
|
|
{{- end }}
|