Rename list.html to taxonomy.html in authors and series

Matches the changes made in Hugo 0.146.0
This commit is contained in:
2025-08-24 02:57:33 -05:00
parent 741b3bc01b
commit 310961215e
2 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{{ define "main" }}
<h1>
{{ partial "icon.html" "user-circle" }}
{{ .Title | markdownify }}
</h1>
{{ with .Content }}
{{ . }}
{{ end }}
<div class="page-list">
{{ with .Paginator.Pages }}
{{ range . }}
<article class="page">
{{ .Render "summary" }}
</article>
{{ end }}
{{ else }}
<div>
{{ i18n "no_posts" }}
</div>
{{ end }}
</div>
{{ end }}