hugo-theme-relearn/layouts/partials/pageHelper/depth.hugo

9 lines
306 B
Text
Raw Normal View History

{{- /* https://discourse.gohugo.io/t/how-to-know-the-section-depth/37302/4 */ -}}
{{- $page := .page }}
{{- $depth := .depth | default 0 }}
{{- with $page.Parent }}
2023-09-23 21:28:31 +00:00
{{- $depth = add $depth 1 }}
2024-04-07 13:16:34 +00:00
{{- partial "pageHelper/depth.hugo" (dict "page" . "depth" $depth) }}
{{- else }}
{{- $depth }}
{{- end }}