2022-04-02 00:59:47 +03:00
|
|
|
{{define "category list"}}Category list{{end}}
|
|
|
|
{{define "title"}}{{template "category list"}}{{end}}
|
2022-04-01 23:52:56 +03:00
|
|
|
{{define "body"}}
|
2024-06-11 14:58:59 +03:00
|
|
|
<main class="main-width mv-tags">
|
2023-02-18 22:35:25 +03:00
|
|
|
<h1 class="p-name">{{template "title"}}</h1>
|
2022-04-01 23:52:56 +03:00
|
|
|
{{if len .Categories}}
|
2022-05-07 01:50:49 +05:00
|
|
|
<ol>
|
2022-04-01 23:52:56 +03:00
|
|
|
{{range .Categories}}
|
2024-06-11 14:58:59 +03:00
|
|
|
<li class="mv-tag">
|
2023-02-18 22:35:25 +03:00
|
|
|
<a class="wikilink u-url p-name" href="/category/{{.}}">{{beautifulName .}}</a>
|
2022-04-01 23:52:56 +03:00
|
|
|
</li>
|
|
|
|
{{end}}
|
2022-04-21 18:05:15 +03:00
|
|
|
</ol>
|
2022-04-01 23:52:56 +03:00
|
|
|
{{else}}
|
|
|
|
<p>{{block `no categories` .}}This wiki has no categories.{{end}}</p>
|
|
|
|
{{end}}
|
|
|
|
</main>
|
|
|
|
{{end}}
|