yrzam-hugo-theme/layouts/partials/page_path.html
2024-06-08 22:47:06 +04:00

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 -}}
&nbsp;/&nbsp;
{{- end -}}
{{- if compare.Ne .Kind "404" -}}
{{- .LinkTitle -}}
{{- else -}}
???
{{- end -}}
</nav>
{{- /**/ -}}