mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-12 05:20:26 +00:00
59deabd0d1
That was rough
17 lines
566 B
HTML
17 lines
566 B
HTML
{{define "navititle"}}
|
|
<h1 class="navi-title">
|
|
{{- $withParents := .HyphaNamePartsWithParents -}}
|
|
{{- $parts := .HyphaNameParts -}}
|
|
<a href="/hypha/{{.HomeHypha}}">
|
|
{{- .Icon -}}
|
|
<span aria-hidden="true" class="navi-title__colon">:</span></a>
|
|
{{- range $i, $part := .HyphaNameParts -}}
|
|
{{- if gt $i 0 -}}
|
|
<span aria-hidden="true" class="navi-title__separator">/</span>
|
|
{{- end -}}
|
|
<a href="{{index $withParents $i}}" rel="{{if len $parts | eq (inc $i)}}bookmark{{else}}up{{end}}">
|
|
{{- beautifulName $part -}}
|
|
</a>
|
|
{{- end}}
|
|
</h1>
|
|
{{end}} |