Rinkusu/layouts/partials/bradcrumb.html

17 lines
647 B
HTML
Raw Normal View History

2021-11-15 08:07:47 +00:00
{{ if site.Params.breadcrumbs }}
2021-09-23 11:16:17 +00:00
{{"<!-- Bradcrumb Section -->" | safeHTML}}
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<nav aria-label="breadcrumb">
<!-- <p> You are hear ↓↓↓</p> -->
<ol class="breadcrumb">
2023-05-25 17:53:40 +00:00
{{- range .Ancestors.Reverse }}
<li class="breadcrumb-item"><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{- end }}
<li class="breadcrumb-item"><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
2021-09-23 11:16:17 +00:00
</ol>
</nav>
</div>
</nav>
{{"<!-- /Bradcrumb Section -->" | safeHTML}}
2021-11-15 08:07:47 +00:00
{{ end }}