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.
This commit is contained in:
parent
50dc3c45c1
commit
59ff58e159
6 changed files with 81 additions and 26 deletions
13
layouts/partials/page/descendent_section.list.html
Normal file
13
layouts/partials/page/descendent_section.list.html
Normal file
|
@ -0,0 +1,13 @@
|
|||
<main class="main--list">
|
||||
<header class="page-header">
|
||||
{{ partial "page_header.html" (dict "page" .) }}
|
||||
</header>
|
||||
|
||||
{{- .Content -}}
|
||||
|
||||
{{ range .RegularPages.ByPublishDate -}}
|
||||
{{ if or (not .Draft) hugo.IsDevelopment -}}
|
||||
{{ .Render "page_summary" }}
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</main>
|
Loading…
Add table
Add a link
Reference in a new issue