1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2025-01-09 11:00:25 +00:00
mycorrhiza/backlinks/view_backlinks.html

17 lines
679 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"}}
<div class="layout">
<main class="main-width backlinks">
<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>
<ol class="backlinks__list">
2022-04-02 16:58:57 +00:00
{{range .Backlinks}}
<li class="backlinks__entry">
<a class="backlinks__link wikilink" href="/hypha/{{.}}">{{beautifulName .}}</a>
</li>
{{end}}
</ol>
2022-04-02 16:58:57 +00:00
</main>
</div>
{{end}}