hugo-theme-termlite/layouts/_default/list.html
Eryn Wells 4a6dd87603 Consolidate list templates to _default
Remove the blog list template since it's no different from the default list.
2024-10-24 10:05:25 -06:00

7 lines
220 B
HTML

{{ define "main" }}
{{ if eq . .FirstSection }}
{{ partial "page/first_section.list.html" (dict "page" .) }}
{{ else }}
{{ partial "page/descendent_section.list.html" (dict "page" .) }}
{{ end }}
{{ end }}