2023-05-15 15:57:51 +02:00
|
|
|
{{ if not .IsHome }}
|
2023-05-20 19:59:58 +02:00
|
|
|
<nav aria-label="Breadcrumbs">
|
2023-05-15 15:26:10 +02:00
|
|
|
<ol class="breadcrumb">
|
|
|
|
{{ range $index,$element := .Ancestors.Reverse }}
|
|
|
|
{{ if eq $index 0 }}
|
2023-05-29 19:31:11 +02:00
|
|
|
<li><img src="/afbeeldingen/iconen/home.svg" height="{{ .Site.Params.smallIconSize }}" width="{{ .Site.Params.smallIconSize }}" alt="{{ i18n "back_to_home" }}"> <a href="{{ .Permalink }}">{{ .Title }}</a></li>
|
2023-05-15 15:26:10 +02:00
|
|
|
{{ else }}
|
|
|
|
<li>
|
|
|
|
<a href="{{ .Permalink }}">{{ .LinkTitle }}</a>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
<li class="active">
|
2023-06-01 20:16:32 +02:00
|
|
|
<a aria-current="page" href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
|
2023-05-15 15:26:10 +02:00
|
|
|
</li>
|
|
|
|
</ol>
|
|
|
|
</nav>
|
2023-05-15 15:57:51 +02:00
|
|
|
{{ end }}
|