mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 15:57:57 +00:00
9 lines
No EOL
304 B
Text
9 lines
No EOL
304 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 "get-page-depth.hugo" (dict "page" . "depth" $depth) }}
|
|
{{- else }}
|
|
{{- $depth }}
|
|
{{- end }} |