Consider root and current section's content type if set in front matter
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 30 Jun 2018 11:03:26 +0000 (13:03 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 30 Jun 2018 11:10:04 +0000 (13:10 +0200)
commitc790029e1dbb0b66af18d05764bd6045deb2e180
tree6273e53cc6f6910b6a43d317178dcafc8506d3fb
parent554553c09c7657d28681e1fa0638806a452737a0
Consider root and current section's content type if set in front matter

This should allow for less duplication of templates. Before this commit it was possible to override the content page of a given page/section, but only one page at a time.

Full "template sets" can now be inherited by setting `type: blog` etc. in the section content page's front matter, and that type will be considered when looking for layouts for all pages in that section.

For nested sections, it will use consider both `type` set in the current section first, then `type` set in the first section below home, e.g. `/docs`.

This commit also adds a new Page method: `FirstSection`. This navigates up to the first section below home (e.g. `/docs`). For the home page it will return itself.

Fixes #4891
hugolib/page.go
hugolib/site_sections.go
hugolib/site_sections_test.go
output/layout.go
output/layout_test.go