mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2025-01-18 19:00:24 +00:00
10 lines
244 B
HTML
10 lines
244 B
HTML
{{ partial "header.html" . }}
|
|
{{ if .Content }}
|
|
{{ .Content }}
|
|
{{ else }}
|
|
{{ with (index (index .Site.Sections .Section) 0) }}
|
|
{{ .Page.Content }}
|
|
{{ $.Scratch.Set "uniqueId" .Page.UniqueID }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ partial "footer.html" . }}
|