2021-11-14 18:57:23 -06:00
|
|
|
<div class="post">
|
|
|
|
<h2 class="post-title">
|
|
|
|
{{ with .Parent.Params.icon }}{{ partial "icon.html" . }}{{ end }}
|
|
|
|
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
|
|
|
{{ if .Draft }}{{ partial "icon.html" "write" }}{{ end }}
|
|
|
|
</h2>
|
|
|
|
|
2021-11-23 13:58:48 -06:00
|
|
|
{{ partial "post-metadata/series.html" . }}
|
2021-11-14 18:57:23 -06:00
|
|
|
|
|
|
|
<div class="post-description">
|
2021-11-22 00:42:08 -06:00
|
|
|
{{ partial "description-or-summary.html" . }}
|
2021-11-14 18:57:23 -06:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="series-pages">
|
|
|
|
<ul>
|
2021-11-23 13:14:44 -06:00
|
|
|
{{ $i := 0 }}
|
|
|
|
{{ $total := len .Data.Pages }}
|
2021-11-14 18:57:23 -06:00
|
|
|
{{ range .Data.Pages.Reverse }}
|
2021-11-23 13:14:44 -06:00
|
|
|
{{ $i = add 1 $i }}
|
|
|
|
{{ .Scratch.Set "series_position" $i }}
|
|
|
|
{{ .Scratch.Set "series_total" $total }}
|
|
|
|
<li>{{ .Render "summary/series_post" }}</li>
|
2021-11-14 18:57:23 -06:00
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|