Rename breadcrumb to breadcrumbs
This commit is contained in:
13
layouts/partials/paige/breadcrumbs.html
Normal file
13
layouts/partials/paige/breadcrumbs.html
Normal file
@@ -0,0 +1,13 @@
|
||||
{{ $page := . }}
|
||||
|
||||
{{ with .Ancestors }}
|
||||
<nav aria-label="{{ i18n `paige_breadcrumbs` }}" class="mt-3" id="paige-breadcrumbs">
|
||||
<div class="d-flex justify-content-center">
|
||||
<ol class="breadcrumb">
|
||||
{{ range .Reverse }}
|
||||
<li class="breadcrumb-item"><a href="{{ .RelPermalink }}">{{ .Title | markdownify}}</a></li>
|
||||
{{ end }}
|
||||
</ol>
|
||||
</div>
|
||||
</nav>
|
||||
{{ end }}
|
Reference in New Issue
Block a user