This repository has been archived on 2024-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
bird.tacowolf.net/themes/birdspace/layouts/partials/crumbs.html

10 lines
412 B
HTML
Raw Normal View History

2022-07-28 21:47:37 -04:00
<ol class="crumbs">
{{ template "breadcrumbnav" (dict "p1" . "p2" .) }}
</ol>{{ define "breadcrumbnav" }} {{ if .p1.Parent }} {{ template
"breadcrumbnav" (dict "p1" .p1.Parent "p2" .p2 ) }} {{ else if not
.p1.IsHome }} {{ template "breadcrumbnav" (dict "p1" .p1.Site.Home
"p2" .p2 ) }} {{ end }}
<li if="" eq="" class="active" end="">
<a href="{{.p1.Permalink}}">{{ lower .p1.Title }}</a>
</li>{{ end }}