Hugo Bilberry First commit to gitea@cowbay.org

This commit is contained in:
2018-11-09 16:23:58 +08:00
commit 16f4228909
1090 changed files with 399555 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{{ define "main" }}
<div class="content">
<div class="article-wrapper u-cf single">
<a class="bubble" href="{{ "/author/" | relLangURL}}">
<i class="fa fa-fw fa-users"></i>
</a>
<article class="article">
<div class="content">
<h3>{{ i18n "authors" }}</h3>
<hr>
<ul id="all-categories">
{{ range $name, $taxonomy := .Site.Taxonomies.author }}
<li><a href="{{ "/author/" | relLangURL }}{{ $name | urlize }}">{{ $name | humanize }} ({{ $taxonomy.Count }})</a></li>
{{ end }}
</ul>
</div>
</article>
</div>
</div>
{{ end }}