mycorrhiza/web/views/cat-list.html
2024-07-28 13:15:12 +03:00

18 lines
555 B
HTML

{{define "category list"}}Category list{{end}}
{{define "title"}}{{template "category list"}}{{end}}
{{define "body"}}
<main class="main-width mv-tags">
<h1 class="p-name">{{template "title"}}</h1>
{{if len .Categories}}
<ol>
{{range .Categories}}
<li class="mv-tag">
<a class="wikilink u-url p-name" href="/category/{{.}}">{{beautifulName .}}</a>
</li>
{{end}}
</ol>
{{else}}
<p>{{block `no categories` .}}This wiki has no categories.{{end}}</p>
{{end}}
</main>
{{end}}