node to page: Need to append theme templates
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 17 Nov 2016 16:08:31 +0000 (17:08 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 22 Nov 2016 08:57:03 +0000 (09:57 +0100)
Updates #2297

hugolib/page.go

index 6d549273cd6b4e6ee18c14973e978eb73876b056..55b36af8d920a64f45003edfcee4c1faa0855778 100644 (file)
@@ -579,16 +579,16 @@ func (p *Page) layouts(l ...string) []string {
 
        switch p.Kind {
        case KindHome:
-               return []string{"index.html", "_default/list.html"}
+               return p.site.appendThemeTemplates([]string{"index.html", "_default/list.html"})
        case KindSection:
                section := p.sections[0]
-               return []string{"section/" + section + ".html", "_default/section.html", "_default/list.html", "indexes/" + section + ".html", "_default/indexes.html"}
+               return p.site.appendThemeTemplates([]string{"section/" + section + ".html", "_default/section.html", "_default/list.html", "indexes/" + section + ".html", "_default/indexes.html"})
        case KindTaxonomy:
                singular := p.site.taxonomiesPluralSingular[p.sections[0]]
-               return []string{"taxonomy/" + singular + ".html", "indexes/" + singular + ".html", "_default/taxonomy.html", "_default/list.html"}
+               return p.site.appendThemeTemplates([]string{"taxonomy/" + singular + ".html", "indexes/" + singular + ".html", "_default/taxonomy.html", "_default/list.html"})
        case KindTaxonomyTerm:
                singular := p.site.taxonomiesPluralSingular[p.sections[0]]
-               return []string{"taxonomy/" + singular + ".terms.html", "_default/terms.html", "indexes/indexes.html"}
+               return p.site.appendThemeTemplates([]string{"taxonomy/" + singular + ".terms.html", "_default/terms.html", "indexes/indexes.html"})
        }
 
        // Regular Page handled below