breadcrumbs.html (1018B)
1 {{- if (.Param "ShowBreadCrumbs") -}} 2 <nav class="breadcrumbs" role="navigation" aria-label="Breadcrumb"> 3 {{- $ancestors := .Ancestors.Reverse -}} 4 {{- range $i, $bc := $ancestors }} 5 {{- if eq $i 0 }} 6 <a href="{{ $bc.RelPermalink }}">{{ i18n "home" | default "Home" }}</a> 7 {{- else }} 8 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" 9 stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"> 10 <polyline points="9 18 15 12 9 6"></polyline> 11 </svg> 12 <a href="{{ $bc.RelPermalink }}">{{ $bc.Title }}</a> 13 {{- end }} 14 {{- end }} 15 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" 16 stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"> 17 <polyline points="9 18 15 12 9 6"></polyline> 18 </svg> 19 </nav> 20 {{- end -}}