New arrivals

{% 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' %}{% endcapture %} {% if i == 'one' %}
{% endif %}
Image of {{ product.name | escape }}
{{ 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 %}
{% if i == 'three' %}
{% endif %} {% endfor %} {% unless i == 'three' %}
{% endunless %}

{{ paginate | default_pagination }}

{% else %}

No products found.

{% endif %}

{% endpaginate %}