added files from christoph

This commit is contained in:
rra
2022-06-15 07:39:59 +02:00
parent ce00fb5b26
commit cad1d48933
26 changed files with 1310 additions and 77 deletions

View File

@ -0,0 +1,11 @@
{{ define "main" }}
<h1>Authors</h1>
<ul>
{{ range $name, $taxonomy := .Site.Taxonomies.authors }}
<li><a href="/authors/{{ $name | urlize }}">{{ $name | humanize }} ({{ $taxonomy.Count }})</a></li>
{{end}}
</ul>
{{ end }}