hugolib: Render paginator pages for taxonomy terms

See #2826
This commit is contained in:
Bjørn Erik Pedersen 2017-02-22 21:31:52 +01:00
parent e117b1b2c7
commit 4d679627ec
1 changed files with 1 additions and 2 deletions

View File

@ -71,8 +71,7 @@ func pageRenderer(s *Site, pages <-chan *Page, results chan<- error, wg *sync.Wa
results <- err
}
// Taxonomy terms have no page set to paginate, so skip that for now.
if p.IsNode() && p.Kind != KindTaxonomyTerm {
if p.IsNode() {
if err := s.renderPaginator(p); err != nil {
results <- err
}