
Currently, I have this code which only outputs previous and next buttons.
{% paginate collection.products by 12 %}
{% for product in collection.products %}
{% render 'product-card', product: product %}
{% else %}
There are no products inside of this collection.
{% endfor %}
{% render 'pagination', pagination: paginate %}
{% endpaginate %}
{% if pagination.pages > 1 %}
{% endif %}