diff --git a/hugolib/site.go b/hugolib/site.go index 4a986d81f..a79fa9f84 100644 --- a/hugolib/site.go +++ b/hugolib/site.go @@ -843,6 +843,8 @@ func (s *Site) newTaxonomyNode(t taxRenderInfo) (*Node, string) { n.Date = t.pages[0].Page.Date } n.Data[t.singular] = t.pages + n.Data["Singular"] = t.singular + n.Data["Plural"] = t.plural n.Data["Pages"] = t.pages.Pages() return n, base }