1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-10-30 11:46:16 +00:00
mycorrhiza/misc/view_list.html

19 lines
488 B
HTML
Raw Normal View History

2022-04-02 07:10:32 +00:00
{{define "list of hyphae"}}List of hyphae{{end}}
{{define "title"}}{{template "list of hyphae"}}{{end}}
{{define "body"}}
<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>
2022-04-02 07:10:32 +00:00
{{end}}