I have a website with multiple sections and subsections.
Example: In the first section there are four subsections.
/section-1/subsection-1
/section-1/subsection-2
/section-1/subsection-3
/section-1/subsection-4
In each subsection there are more nested sections (folders with _index.html).
Example: In the first subsection there are six subpages.
/section-1/subsection-1/subsubsection-1
/section-1/subsection-1/subsubsection-1/example-1
/section-1/subsection-1/subsubsection-1/example-2
/section-1/subsection-1/subsubsection-2
/section-1/subsection-1/subsubsection-3
/section-1/subsection-1/subsubsection-4
On /section-1/subsection-1/subsubsection-1 I want to list all pages which are below this path.
I know how to list all pages below section 1…
{{ range where .Site.Pages "Section" "section-1" }}
{{ end }}
…but not those below /section-1/subsection-1/subsubsection-1.