1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2025-03-10 13:38:20 +00:00
mycorrhiza/web/views/cat-list.html

18 lines
555 B
HTML
Raw Permalink Normal View History

2022-04-02 00:59:47 +03:00
{{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}}
2022-05-07 01:50:49 +05:00
<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}}