Back to Meshery

Breadcrumbs

docs/layouts/partials/breadcrumbs.html

1.0.18487 B
Original Source

{{ $root := . }} {{ $url := $root.RelPermalink }} {{ $crumbs := split $url "/" }} {{ if ne $url "/" }} home {{ end }} {{ range $index, $crumb := $crumbs }} {{ if and $crumb (gt (len $crumb) 0) (gt $index 0) }} {{ if eq (add $index 1) (len $crumbs) }} / {{ lower $root.Page.Title }} {{ else }} {{ $path := delimit (first (add $index 1) $crumbs) "/" }} / {{ replace (replace (lower $crumb) "-" " ") ".html" "" }} {{ end }} {{ end }} {{ end }}