forked from ruangrupa/lumbung.space
11 lines
229 B
HTML
11 lines
229 B
HTML
|
{{ 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 }}
|