{{ 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 %}
{% if product_status != blank %}
{% endfor %}
{% if paginate.pages > 1 %}
{{ paginate | default_pagination, 'pagination', 'pagination', '', '' }}
{% endif %}
{% else %}
{{ product_status }}
{% endif %}
{{ product.name }}
{{ product.default_price | money: theme.money_format }}
No products found.
{% endif %} {% endpaginate %}