2021-11-15 09:07:47 +01:00
|
|
|
{{ if site.Params.breadcrumbs }}
|
2021-09-23 13:16:17 +02: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 19:53:40 +02: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 13:16:17 +02:00
|
|
|
</ol>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
{{"<!-- /Bradcrumb Section -->" | safeHTML}}
|
2021-11-15 09:07:47 +01:00
|
|
|
{{ end }}
|