hugo-theme-termlite/layouts/partials/page/descendent_section.list.html

20 lines
503 B
HTML
Raw Normal View History

{{- $page := .page -}}
{{- $class := .class | default "" -}}
<main class="main--list{{ with $class }} {{ . }}{{ end }}">
<header class="page-header">
{{ partial "page_header.html" . }}
</header>
{{- .Content -}}
{{ with $page.RegularPages.ByPublishDate -}}
<section class="main__posts-by-year">
{{ range .Reverse -}}
{{ if partial "page/should_render.html" . -}}
{{ .Render "page_summary" }}
{{ end }}
{{ end }}
</section>
{{ end }}
</main>