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/layouts/partials/crumbs.html

9 lines
407 B
HTML

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