This thing looks like a path. It lists the hierarchy of pages from the home page.
12 lines
351 B
HTML
12 lines
351 B
HTML
<nav class="nav-breadcrumb">
|
|
<ol>
|
|
{{ range .Ancestors.Reverse }}
|
|
{{- $title := .LinkTitle -}}
|
|
{{- if .IsHome -}}
|
|
<li class="nav-breadcrumb__home"><a href="{{ .Permalink }}">{{ i18n "home" }}</a></li>
|
|
{{ else }}
|
|
<li><a href="{{ .Permalink }}">{{ $title }}</a></li>
|
|
{{- end -}}
|
|
{{ end }}
|
|
</ol>
|
|
</nav>
|