mirror of
https://github.com/yrzam/yrzam-hugo-theme.git
synced 2025-04-19 12:19:09 +00:00
17 lines
367 B
HTML
17 lines
367 B
HTML
<nav class="page-path">
|
|
{{- range .Ancestors.Reverse -}}
|
|
{{- if compare.Ne .Kind "taxonomy" -}}
|
|
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
|
|
{{- else -}}
|
|
{{- .LinkTitle -}}
|
|
{{- end -}}
|
|
/
|
|
{{- end -}}
|
|
{{- if compare.Ne .Kind "404" -}}
|
|
{{- .LinkTitle -}}
|
|
{{- else -}}
|
|
???
|
|
{{- end -}}
|
|
</nav>
|
|
{{- /**/ -}}
|