hugo-theme-relearn/layouts/_default/list.html

11 lines
244 B
HTML
Raw Normal View History

2017-03-14 01:07:40 +03:00
{{ partial "header.html" . }}
2017-03-14 02:43:12 +03:00
{{ if .Content }}
2017-03-14 01:07:40 +03:00
{{ .Content }}
2017-03-14 02:43:12 +03:00
{{ else }}
{{ with (index (index .Site.Sections .Section) 0) }}
{{ .Page.Content }}
2017-03-14 02:55:59 +03:00
{{ $.Scratch.Set "uniqueId" .Page.UniqueID }}
2017-03-14 02:10:33 +03:00
{{ end }}
2017-03-14 02:43:12 +03:00
{{ end }}
{{ partial "footer.html" . }}