hugo-theme-relearn/layouts/partials/_main.html

8 lines
562 B
HTML
Raw Normal View History

{{- partial "page-meta.hugo" . }}
{{- partial "output-partial.html" (dict "base" "header" "page" . "parameter" .) }}
2022-07-06 00:15:33 +02:00
{{- if not .File }}
{{- partial "output-partial.html" (dict "base" "body" "page" . "parameter" (dict "page" . "content" (partial "initial.html" .))) }}
2022-04-11 23:04:49 +02:00
{{- else }}
{{- partial "output-partial.html" (dict "base" "body" "page" . "parameter" (dict "page" . "content" (partial "output-partial.html" (dict "base" "content" "page" . "parameter" .)))) }}
2022-04-11 23:04:49 +02:00
{{- end }}
{{- partial "output-partial.html" (dict "base" "footer" "page" . "parameter" .) }}