mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 15:57:57 +00:00
20 lines
No EOL
802 B
Text
20 lines
No EOL
802 B
Text
{{- $hook := .hook }}
|
|
{{- $page := .page }}
|
|
{{- $parameter := .parameter }}
|
|
{{- $outputFormat := .outputFormat }}
|
|
{{- if not $outputFormat }}
|
|
{{- $outputFormat = partial "output-format.hugo" $page }}
|
|
{{- end }}
|
|
{{- $archetype := "default" }}
|
|
{{- if $page.Params.archetype }}
|
|
{{- $archetype = $page.Params.archetype }}
|
|
{{- else if $page.Params.chapter }}
|
|
{{- $archetype = "deprecated-chapter" }}
|
|
{{- else if $page.IsHome }}
|
|
{{- $archetype = "deprecated-home" }}
|
|
{{- end }}
|
|
{{- $f := printf "/layouts/partials/archetypes/%s" $archetype }}
|
|
{{- if not (partialCached "fileExists.hugo" $f $f) }}
|
|
{{- $archetype = "default" }}
|
|
{{- end }}
|
|
{{- partial "output-partial.hugo" (dict "base" (printf "archetypes/%s/%s" $archetype $hook) "page" $page "parameter" $parameter "outputFormat" $outputFormat) }} |