hugo-theme-relearn/layouts/partials/_relearn/pageDepth.gotmpl
2024-10-11 16:45:40 +02:00

9 lines
No EOL
310 B
Go Template

{{- /* https://discourse.gohugo.io/t/how-to-know-the-section-depth/37302/4 */ -}}
{{- $page := .page }}
{{- $depth := .depth | default 0 }}
{{- with $page.Parent }}
{{- $depth = add $depth 1 }}
{{- partial "_relearn/pageDepth.gotmpl" (dict "page" . "depth" $depth) }}
{{- else }}
{{- $depth }}
{{- end }}