summaryrefslogtreecommitdiffstats
path: root/themes/danix-xyz-hacker/layouts/partials/breadcrumb.html
blob: aa7c1e8bbbcf15db09565c9105a91925fe02b535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ $homeLink := "/" }}
{{ $articlesLink := "/articles/" }}
{{ if eq .Lang "it" }}
  {{ $homeLink = "/it/" }}
  {{ $articlesLink = "/it/articles/" }}
{{ end }}

<nav class="breadcrumb mb-6" aria-label="Breadcrumb">
  <a href="{{ $homeLink }}">{{ i18n "home" }}</a>
  <span class="breadcrumb-separator">/</span>
  <a href="{{ $articlesLink }}">{{ i18n "articles" }}</a>
  <span class="breadcrumb-separator">/</span>
  <span>{{ .Title }}</span>
</nav>