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

7 lines
476 B
HTML
Raw Normal View History

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