{% paginate products from products.current by theme.products_per_page order:'newest' %}
{% if products != blank %}
{% for product in products %}
{% capture i %}{% cycle 'one', 'two', 'three', 'four' %}{% endcapture %}
{% if i == 'one' %}
{% endunless %}
{% endif %}
{% 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' %}{{ product.default_price | money_with_sign }}
{% else %}
No products found.
{% endif %}
{% endpaginate %}