hugo-theme-relearn/layouts/partials/pageHelper/depth.hugo
2024-04-07 15:16:34 +02:00

9 lines
No EOL
306 B
Text

{{- /* 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 "pageHelper/depth.hugo" (dict "page" . "depth" $depth) }}
{{- else }}
{{- $depth }}
{{- end }}