mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-10-30 11:46:16 +00:00
19 lines
488 B
HTML
19 lines
488 B
HTML
{{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>
|
|
{{end}} |