The pagination doc,says
Pagination can be configured in your site configuration:
Paginate
default = 10. This setting can be overridden within the template.
Does “template” mean site configuration file or actual layout html templates?
I’m a new comer to Go Lang and GoLang Templates, so my amateurish attempts of trying to set the PageSize property of .Paginator obviously failed (ie: $paginator.PageSize := 5
), since the doc says the Paginator object is static and cannot be changed after initialization.
So is it possible to override the Paginate config in html templates? If so, what is the proper way to do it? I’ve been unable to find an example…