summaryrefslogtreecommitdiffstats
path: root/layouts/partials/breadcrumb.html
blob: c15dfeb64e32f42ddc446ea6870aa87848ef9fb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ $homeLink := "/" }}
{{ if eq .Lang "it" }}
  {{ $homeLink = "/it/" }}
{{ end }}

<nav class="breadcrumb mb-6" aria-label="Breadcrumb">
  <a href="{{ $homeLink }}">{{ i18n "home" }}</a>
  {{ range .Ancestors.Reverse }}
    {{ if ne .Kind "home" }}
      <span class="breadcrumb-separator">/</span>
      <a href="{{ .RelPermalink }}">{{ .Title }}</a>
    {{ end }}
  {{ end }}
  <span class="breadcrumb-separator">/</span>
  <span>{{ .Title }}</span>
</nav>