hugo-theme-termlite/layouts/blog/list.html
Eryn Wells 59ff58e159 Break section template into first and descendent sections
First section templates render the most recent $n yearly subsections as a list of
articles.

Descendent sections render just the content of those subsections.
2024-10-23 11:17:30 -07:00

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 }}