From: Bjørn Erik Pedersen Date: Wed, 1 Mar 2017 16:07:38 +0000 (+0100) Subject: hugolib: Make sure that empty terms lists are still created X-Git-Tag: v0.20~175 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=9671162a;p=brevno-suite%2Fhugo hugolib: Make sure that empty terms lists are still created Fixes #2977 --- diff --git a/hugolib/hugo_sites.go b/hugolib/hugo_sites.go index 1a7bdf90..f35c7ce0 100644 --- a/hugolib/hugo_sites.go +++ b/hugolib/hugo_sites.go @@ -351,14 +351,14 @@ func (h *HugoSites) createMissingPages() error { newPages = append(newPages, n) } } + } - if s.isEnabled(KindTaxonomyTerm) { - if !foundTaxonomyTermsPage { - foundTaxonomyTermsPage = true - n := s.newTaxonomyTermsPage(plural) - s.Pages = append(s.Pages, n) - newPages = append(newPages, n) - } + if s.isEnabled(KindTaxonomyTerm) { + if !foundTaxonomyTermsPage { + foundTaxonomyTermsPage = true + n := s.newTaxonomyTermsPage(plural) + s.Pages = append(s.Pages, n) + newPages = append(newPages, n) } } } diff --git a/hugolib/taxonomy_test.go b/hugolib/taxonomy_test.go index 3c6dc270..5687cc03 100644 --- a/hugolib/taxonomy_test.go +++ b/hugolib/taxonomy_test.go @@ -73,6 +73,7 @@ defaultContentLanguage = "en" tag = "tags" category = "categories" other = "others" +empty = "empties" ` pageTemplate := `--- @@ -141,4 +142,7 @@ others: require.Equal(t, "Hello Hugo World", helloWorld.Title) } + // Issue #2977 + th.assertFileContent("public/empties/index.html", "Terms List", "Empties") + }