2021-11-21 19:43:56 -06:00
|
|
|
{{ define "main" }}
|
|
|
|
<h1>
|
|
|
|
{{ partial "icon.html" "files" }}
|
|
|
|
{{ .Title | markdownify }}
|
|
|
|
{{ partial "rss-link.html" . }}
|
|
|
|
</h1>
|
|
|
|
|
2021-11-23 13:58:48 -06:00
|
|
|
{{ partial "post-metadata/series.html" . }}
|
|
|
|
|
2021-11-22 01:36:29 -06:00
|
|
|
{{ partial "description-or-summary.html" . }}
|
2021-11-21 19:43:56 -06:00
|
|
|
|
|
|
|
<div class="page-list">
|
2021-11-25 23:34:56 -06:00
|
|
|
{{ with .Paginator.Pages.Reverse }}
|
|
|
|
<ul>
|
|
|
|
{{ $i := 0 }}
|
|
|
|
{{ $total := len $.Pages }}
|
|
|
|
{{ range . }}
|
|
|
|
{{ $i = add 1 $i }}
|
|
|
|
{{ .Scratch.Set "series_position" $i }}
|
|
|
|
{{ .Scratch.Set "series_total" $total }}
|
|
|
|
<li>{{ .Render "summary/post" }}</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
{{ else }}
|
|
|
|
<div>
|
|
|
|
{{ i18n "no_posts" }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
2021-11-21 19:43:56 -06:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ partial "pagination.html" . }}
|
|
|
|
{{ end }}
|