hugo-theme-termlite/layouts/partials/page_breadcrumb.html

14 lines
357 B
HTML
Raw Normal View History

<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>