1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2025-01-08 10:51:09 +00:00
mycorrhiza/misc/view_list.html
2022-04-02 10:10:32 +03:00

21 lines
531 B
HTML

{{define "list of hyphae"}}List of hyphae{{end}}
{{define "title"}}{{template "list of hyphae"}}{{end}}
{{define "body"}}
<div class="layout">
<main class="main-width">
<h1>{{template "list of hyphae"}}</h1>
<ol class="hypha-list">
{{range .Entries}}
<li class="hypha-list__entry">
<a class="hypha-list__link" href="/hypha/{{.Name}}">
{{beautifulName .Name}}
</a>
{{if .Ext}}
<span class="hypha-list__amnt-type">{{.Ext}}</span>
{{end}}
</li>
{{end}}
</ol>
</main>
</div>
{{end}}