The breadcrumb shows navigation from the home page as a path: / > Posts > This Post en.yaml
13 lines
357 B
HTML
13 lines
357 B
HTML
<nav class="nav-breadcrumb">
|
|
<ol>
|
|
{{ range .Ancestors.Reverse }}
|
|
{{- $title := .LinkTitle -}}
|
|
{{- if .IsHome -}}
|
|
{{ $title = "/" }}
|
|
{{- end -}}
|
|
<li><a href="{{ .Permalink }}">{{ $title }}</a></li>
|
|
{{ end }}
|
|
|
|
<li class="nav-breadcrumb__active"><a href="{{ .Permalink }}">{{ .LinkTitle }}</a></li>
|
|
</ol>
|
|
</nav>
|