{% 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 %}

{{ product.default_price | money_with_sign }}

{% if product.status == 'sold-out' %} Sold Out {% elsif product.status == 'coming-soon' %} Coming Soon {% elsif product.on_sale %} On Sale {% endif %}
{% if i == 'four' %}
{% endif %} {% endfor %} {% unless i == 'four' %}
{% endunless %}

{% else %}

No products found.

{% endif %}
{% endpaginate %}