hugo-PaperMod/layouts/partials/breadcrumbs.html

20 lines
685 B
HTML
Raw Normal View History

2021-03-30 14:37:36 +02:00
{{- if (.Param "ShowBreadCrumbs") -}}
2021-02-08 15:58:55 +01:00
<div class="breadcrumbs">
{{- $url := replace .Parent.Permalink (printf "%s" site.BaseURL) "" }}
2021-03-30 14:37:36 +02:00
{{- $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>
{{- $scratch := newScratch }}
2021-02-08 15:58:55 +01:00
{{- range $index, $element := split $lang_url "/" }}
{{- $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 "&nbsp;»&nbsp;" | 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 -}}