mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Revert "hugolib: Render paginator pages for taxonomy terms"
This reverts commit 4d679627ec
.
Will have to think a little more about this.
This commit is contained in:
parent
3631fd2f0e
commit
a8a8249f67
1 changed files with 2 additions and 1 deletions
|
@ -71,7 +71,8 @@ func pageRenderer(s *Site, pages <-chan *Page, results chan<- error, wg *sync.Wa
|
|||
results <- err
|
||||
}
|
||||
|
||||
if p.IsNode() {
|
||||
// Taxonomy terms have no page set to paginate, so skip that for now.
|
||||
if p.IsNode() && p.Kind != KindTaxonomyTerm {
|
||||
if err := s.renderPaginator(p); err != nil {
|
||||
results <- err
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue