1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-04 18:19:54 +00:00
mycorrhiza/backlinks/view_orphans.html
Timur Ismagilov b2e504ec06 Implement /orphans
This page lists hyphae which have no backlinks
2022-05-07 01:21:38 +05:00

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