{% paginate products from products.on_sale by theme.products_per_page %}
{% if products != blank %}
{% for product in products %}
{% capture i %}{% cycle 'one', 'two', 'three', 'four' %}{% endcapture %}
{% if i == 'one' %}
{% endif %}
{% endfor %}
{% unless i == 'four' %}
{% endunless %}
{{ paginate | default_pagination }}
{% else %}
No products found.
{% endif %}
{% endpaginate %}