{{ page.name }}

{% paginate products from products.current by theme.products_per_page %} {% if products != blank %}
{% for product in products %} {% assign product_status = '' %} {% case product.status %} {% when 'active' %} {% if product.on_sale %}{% assign product_status = 'On sale' %}{% endif %} {% when 'sold-out' %} {% assign product_status = 'Sold out' %} {% when 'coming-soon' %} {% assign product_status = 'Coming soon' %} {% endcase %}
Image of {{ product.name | escape }} {% if product_status != blank %}
{{ product_status }}
{% endif %}
{{ product.name }}
{{ product.default_price | money: theme.money_format }}
{% endfor %}
{% if paginate.pages > 1 %} {{ paginate | default_pagination, 'pagination', 'pagination', '', '' }} {% endif %} {% else %}

No products found.

{% endif %} {% endpaginate %}