mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-05 02:29:54 +00:00
15 lines
460 B
HTML
15 lines
460 B
HTML
|
{{define "orphaned hyphae"}}Orphaned hyphae{{end}}
|
||
|
{{define "title"}}{{template "orphaned hyphae"}}{{end}}
|
||
|
{{define "body"}}
|
||
|
<main class="main-width">
|
||
|
<h1>{{template "orphaned hyphae"}}</h1>
|
||
|
<p>{{block "orphan description" .}}Hyphae which have no backlinks are listed here.{{end}}</p>
|
||
|
<ol>
|
||
|
{{range .Orphans}}
|
||
|
<li>
|
||
|
<a class="wikilink" href="/hypha/{{.}}">{{beautifulName .}}</a>
|
||
|
</li>
|
||
|
{{end}}
|
||
|
</ol>
|
||
|
</main>
|
||
|
{{end}}
|