-
{% 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 %}
-
{{ product.default_price | money_with_sign }}{{ product.name }}{% endif %}{{ product_status }}
{% endfor %}
{% endif %}
{% endpaginate %}
{% else %}
{% if categories.active != blank %}
-
{% for category in categories.active %}
-
{{ category.name }}{% for product in category.products limit:1 %}
{% endfor %}
{% endfor %}
{% endif %}
{% endif %}