{{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>
	<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}}