Breadcrumb navigation for highly nested content

The easiest way in my opinion.

a partial breadcrumb.html

{{ with .Parent }}
    {{ partial "breadcrumb.html" . }}
    <a href="{{ .Permalink }}">{{ if .IsHome }}Home{{ else }}{{ .Title }}{{ end }} </a> ><br> 
{{ end }} 

The breadcrumb call in your templates (without the page you are on):

{{ partial "breadcrumb" . }}

The breadcrumb call in your templates (with the page you are on):

{{ partial "breadcrumb" . }} <a href="{{ .Permalink }}">{{ .Title }}</a>
1 Like