2021-03-30 14:37:36 +02:00
|
|
|
{{- if (.Param "ShowBreadCrumbs") -}}
|
2021-02-08 15:58:55 +01:00
|
|
|
<div class="breadcrumbs">
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- $url := replace .Parent.Permalink (printf "%s" .Site.BaseURL) "" }}
|
|
|
|
{{- $lang_url := strings.TrimPrefix (printf "%s/" .Lang) $url -}}
|
2021-02-08 15:58:55 +01:00
|
|
|
|
2021-03-30 14:37:36 +02:00
|
|
|
<a href="{{ "" | absLangURL }}">{{ i18n "home" | default "Home" }}</a>
|
2021-02-10 17:13:45 +01:00
|
|
|
{{- $scratch := newScratch }}
|
2021-02-08 15:58:55 +01:00
|
|
|
{{- range $index, $element := split $lang_url "/" }}
|
|
|
|
|
2021-02-10 17:13:45 +01:00
|
|
|
{{- $scratch.Add "path" (printf "%s/" $element )}}
|
|
|
|
{{- $bc_pg := $.Site.GetPage ($scratch.Get "path") -}}
|
2021-02-08 15:58:55 +01:00
|
|
|
|
|
|
|
{{- if (and ($bc_pg) (gt (len . ) 0))}}
|
|
|
|
{{- print " » " | safeHTML -}}<a href="{{ $bc_pg.Permalink }}">{{ $bc_pg.Name }}</a>
|
|
|
|
{{- end }}
|
|
|
|
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- end -}}
|
2021-02-08 15:58:55 +01:00
|
|
|
</div>
|
2021-03-30 14:37:36 +02:00
|
|
|
{{- end -}}
|