I’m using findTaxonomy() to show a collection based on a URI param (otherwise I’d use the page’s frontmatter). It’s working great except I can’t seem to find a way to get pagination working to limit the results. Is this possible? Is there another recommended way to handle cases like this?
Sample code:
{% set urlCategory = grav.uri.param('category') %}
{% set articlesInCategory = taxonomy.findTaxonomy({
category: ('category.' ~ urlCategory)|t
}).order('default', 'asc') %}
---