On Sale
{% paginate products from products.on_sale by theme.products_per_page %}
{% if products != blank %}
{% assign i == 'four' %}
{% for product in products %}
{% capture i %}{% cycle 'one', 'two', 'three', 'four' %}{% endcapture %}
{% if i == 'one' %}
{% endunless %}
{% endif %}
{% if i == 'four' %}
{% endif %}
{% endfor %}
{% unless i == 'four' %}{{ product.name }}
{{ 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 %}
{{ paginate | default_pagination }}
{% else %}
No products found.
{% endif %}
{% endpaginate %}