Files
paige-hugo/layouts/partials/paige/breadcrumb.html
2023-03-19 22:20:56 -07:00

12 lines
389 B
HTML

{{ $page := . }}
{{ with .Ancestors }}
<nav aria-label="{{ i18n `paige_breadcrumb` }}" class="d-flex justify-content-center mt-3" id="paige-breadcrumb">
<ol class="breadcrumb">
{{ range .Reverse }}
<li class="breadcrumb-item"><a href="{{ .RelPermalink }}">{{ .Title | markdownify}}</a></li>
{{ end }}
</ol>
</nav>
{{ end }}