Redo taxonomy template structure

This commit is contained in:
2021-11-21 19:43:56 -06:00
parent 28cf50d3d8
commit f77efb1843
7 changed files with 98 additions and 75 deletions

14
layouts/series/list.html Normal file
View File

@ -0,0 +1,14 @@
{{ define "main" }}
<h1>
{{ partial "icon.html" "files" }}
{{ .Title | markdownify }}
</h1>
<div class="series-taxonomy">
<ul>
{{ range .Pages }}
<li>{{ .Render "series-summary" }}</li>
{{ end }}
</ul>
</div>
{{ end }}