20 lines
613 B
HTML
20 lines
613 B
HTML
{{- $page := . -}}
|
||
{{- with .Page -}}
|
||
{{- $page = . -}}
|
||
{{- end -}}
|
||
{{- if or $page.IsPage $page.IsSection -}}
|
||
{{- $trail := slice -}}
|
||
{{- range $page.Ancestors.Reverse -}}
|
||
{{- if ne .RelPermalink "/" -}}
|
||
{{- $trail = $trail | append . -}}
|
||
{{- end -}}
|
||
{{- end -}}
|
||
{{- if gt (len $trail) 0 -}}
|
||
<nav class="breadcrumbs" aria-label="Fil d’Ariane">
|
||
{{- range $item := $trail -}}
|
||
<a href="{{ $item.RelPermalink }}">{{ with $item.LinkTitle }}{{ . }}{{ else }}{{ $item.Title }}{{ end }}</a>
|
||
{{- end -}}
|
||
</nav>
|
||
{{- end -}}
|
||
{{- end -}}
|