github.com/choria-io/go-choria@v0.28.1-0.20240416190746-b3bf9c7d5a45/docs/themes/hugo-theme-relearn/layouts/partials/pageHelper/depth.hugo (about)

     1  {{- /* https://discourse.gohugo.io/t/how-to-know-the-section-depth/37302/4 */ -}}
     2  {{- $page := .page }}
     3  {{- $depth := .depth | default 0 }}
     4  {{- with $page.Parent }}
     5    {{- $depth = add $depth 1 }}
     6    {{- partial "pageHelper/depth.hugo" (dict "page" . "depth" $depth) }}
     7  {{- else }}
     8    {{- $depth }}
     9  {{- end }}