From 5dc1f95b63267fe93aca09b3bf0d59b2484c21e4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Mon, 9 Jul 2018 10:29:16 +0200 Subject: [PATCH] Revert "Restrict the new type layout resolution to page and section kinds" This reverts commit 78e8a744b34e885e8169bf0a8bb64c73288e555a. --- hugolib/page.go | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/hugolib/page.go b/hugolib/page.go index 4c31eca4..c6af07b3 100644 --- a/hugolib/page.go +++ b/hugolib/page.go @@ -414,16 +414,14 @@ func (p *Page) createLayoutDescriptor() output.LayoutDescriptor { var typeCurrentSection string var typeRootSection string - if p.Kind == KindPage || p.Kind == KindSection { - curr := p.CurrentSection() - // Make sure we use the contentType only. This is the value from front matter. - if curr != nil { - typeCurrentSection = curr.contentType - } - first := p.FirstSection() - if first != nil { - typeRootSection = first.contentType - } + curr := p.CurrentSection() + // Make sure we use the contentType only. This is the value from front matter. + if curr != nil { + typeCurrentSection = curr.contentType + } + first := p.FirstSection() + if first != nil { + typeRootSection = first.contentType } return output.LayoutDescriptor{ -- 2.30.2