Section list pages now show pages from all sub-sections

This commit is contained in:
Steven Engler 2019-05-18 12:16:58 -04:00
parent d64874ece6
commit 640bac2dbe

View File

@ -4,10 +4,22 @@
<div class="title-header"> <div class="title-header">
<h1>{{ .Title }}</h1> <h1>{{ .Title }}</h1>
</div> </div>
{{ range .Pages }} {{ if gt (len .Sections) 0 }}
<h2>Categories</h2>
<ul>
{{ range .Sections }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
<h2>All Posts</h2>
{{ end }}
{{ $cs := .CurrentSection }}
{{ with $cs }}
{{ range (where .Site.RegularPages "Section" .Section) }}
{{ if .IsDescendant $cs }}
<article class="all-list"> <article class="all-list">
<div class="title-list"> <div class="title-list">
<h2><a href="{{ .RelPermalink }}">{{ if .Draft }}<i>(Draft)</i> {{ end }}{{ .Title }}</a></h2> <h3><a href="{{ .RelPermalink }}">{{ if .Draft }}<i>(Draft)</i> {{ end }}{{ .Title }}</a></h3>
<div class="title-list-date"> <div class="title-list-date">
{{ if eq .Date.IsZero false }} {{ if eq .Date.IsZero false }}
<time>{{ .Date.Format "Monday, January 2, 2006" }}</time> <time>{{ .Date.Format "Monday, January 2, 2006" }}</time>
@ -29,3 +41,5 @@
</article> </article>
{{ end }} {{ end }}
{{ end }} {{ end }}
{{ end }}
{{ end }}