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)
}
}
}
tag = "tags"
category = "categories"
other = "others"
+empty = "empties"
`
pageTemplate := `---
require.Equal(t, "Hello Hugo World", helloWorld.Title)
}
+ // Issue #2977
+ th.assertFileContent("public/empties/index.html", "Terms List", "Empties")
+
}