bobatheme/layouts/series/term.html

21 lines
406 B
HTML
Raw Normal View History

2021-11-21 19:43:56 -06:00
{{ define "main" }}
<h1>
{{ partial "icon.html" "files" }}
{{ .Title | markdownify }}
{{ partial "rss-link.html" . }}
</h1>
{{ partial "page-metadata/series.html" . }}
2021-11-23 13:58:48 -06:00
2022-05-06 19:44:27 -05:00
{{ with .Content }}
{{ . }}
{{ end }}
2021-11-21 19:43:56 -06:00
{{ with .Paginator.Pages.Reverse }}
{{ partial "page-list.html" . }}
{{ end }}
2021-11-21 19:43:56 -06:00
{{ partial "pagination.html" . }}
{{ end }}