According to https://gohugo.io/variables/page/, a {{.Section}}
variable is provided to a page.
But this seems to be only a “string”. So I cannot actually call {{.Section.Title}}
on this.
I tried using {{.Site.Sections}}
but it’s a slice/array (not a map, keyed by this {{.Section}}
string) so iterating over it seems like a bad implementation.
Is there a way to access the “section” object of a page from the template of the page?