summaryrefslogtreecommitdiffstats
path: root/output
diff options
context:
space:
mode:
Diffstat (limited to 'output')
-rw-r--r--output/layouts/layout.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/output/layouts/layout.go b/output/layouts/layout.go
index b903e09ea..09606dba1 100644
--- a/output/layouts/layout.go
+++ b/output/layouts/layout.go
@@ -50,7 +50,7 @@ type LayoutDescriptor struct {
}
func (d LayoutDescriptor) isList() bool {
- return !d.RenderingHook && d.Kind != "page" && d.Kind != "404"
+ return !d.RenderingHook && d.Kind != "page" && d.Kind != "404" && d.Kind != "sitemap" && d.Kind != "sitemapindex"
}
// LayoutHandler calculates the layout template to use to render a given output type.