1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-05 02:29:54 +00:00
mycorrhiza/backlinks/view_backlinks.html

15 lines
565 B
HTML
Raw Normal View History

2022-04-02 16:58:57 +00:00
{{define "backlinks to text"}}Backlinks to {{.}}{{end}}
{{define "title"}}{{template "backlinks to text" .HyphaName}}{{end}}
{{define "body"}}
2022-05-06 20:50:49 +00:00
<main class="main-width">
<h1>{{block "backlinks to link" .HyphaName}}Backlinks to <a href="/hypha/{{.}}">{{beautifulName .}}</a>{{end}}</h1>
<p>{{block "description" .}}Hyphae which have a link to this hypha, embed it as an image or transclude it are listed below.{{end}}</p>
2022-05-06 20:50:49 +00:00
<ol>
{{range .Backlinks}}
2022-05-06 20:50:49 +00:00
<li>
<a class="wikilink" href="/hypha/{{.}}">{{beautifulName .}}</a>
</li>
{{end}}
</ol>
</main>
2022-04-02 16:58:57 +00:00
{{end}}