This commit is contained in:
bel
2021-11-28 22:04:01 -07:00
commit 5aa2cbb7d7
129 changed files with 3776 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{{ define "main" }}
<div class="index-content">
{{ .Content }}
</div>
<h1>{{ i18n .Title }}</h1>
<ul class="terms">
{{ range $key, $value := .Data.Terms }}
<li>
<a href="/{{ (print $.Data.Plural "/" (lower $key)) | absLangURL }}">
{{ $key }}
</a>
({{ len $value }})
</li>
{{ end }}
</ul>
{{ end }}