# Finqu Tags These tags provide Finqu-specific functionality in Liquid templates. They enable access to platform features, data, and integrations unique to Finqu. Use these tags to leverage Finqu’s platform capabilities in your templates. ## paginate You can only render 100 products, articles or product groups at a time. Usually this is not enough and this is where the pagination comes in. Themes need to use pagination to properly display store data to the customer. `paginate` tag works with `for` tag so that you wrap the `for` with the `paginate` like this: ```liquid {% paginate category.products by 5 %} {% for product in category.products %} {% endfor %} {% endpaginate %} ``` Within the `paginate` tag you have access to the [paginate object](/reference/liquid/objects/store/paginate/).