1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-04 18:19:54 +00:00
mycorrhiza/misc/view_list.html

16 lines
450 B
HTML
Raw Permalink Normal View History

2024-10-24 09:06:44 +00:00
{{define "list of hyphae"}}List of pages{{end}}
2022-04-02 07:10:32 +00:00
{{define "title"}}{{template "list of hyphae"}}{{end}}
{{define "body"}}
<main class="main-width">
<h1>{{template "list of hyphae"}}</h1>
2022-07-11 09:03:07 +00:00
<p>{{block "x total" .HyphaCount}}{{.}} total.{{end}}</p>
2022-05-06 20:50:49 +00:00
<ol>
{{range .Entries}}
2022-05-06 20:50:49 +00:00
<li>
<a href="/hypha/{{.Name}}">{{beautifulName .Name}}</a>
{{if .Ext}}<span class="media-type-badge">{{.Ext}}</span>{{end}}
</li>
{{end}}
</ol>
</main>
2022-04-02 07:10:32 +00:00
{{end}}