mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-04 18:19:54 +00:00
16 lines
450 B
HTML
16 lines
450 B
HTML
{{define "list of hyphae"}}List of pages{{end}}
|
|
{{define "title"}}{{template "list of hyphae"}}{{end}}
|
|
{{define "body"}}
|
|
<main class="main-width">
|
|
<h1>{{template "list of hyphae"}}</h1>
|
|
<p>{{block "x total" .HyphaCount}}{{.}} total.{{end}}</p>
|
|
<ol>
|
|
{{range .Entries}}
|
|
<li>
|
|
<a href="/hypha/{{.Name}}">{{beautifulName .Name}}</a>
|
|
{{if .Ext}}<span class="media-type-badge">{{.Ext}}</span>{{end}}
|
|
</li>
|
|
{{end}}
|
|
</ol>
|
|
</main>
|
|
{{end}} |