First section templates render the most recent $n yearly subsections as a list of articles. Descendent sections render just the content of those subsections.
7 lines
192 B
HTML
7 lines
192 B
HTML
{{ define "main" }}
|
|
{{ if eq . .FirstSection }}
|
|
{{ partial "page/first_section.list.html" . }}
|
|
{{ else }}
|
|
{{ partial "page/descendent_section.list.html" . }}
|
|
{{ end }}
|
|
{{ end }}
|