{{ page.name }}
{% if artists.active != blank or categories.active != blank %}Shop
{{ page.name }}
{% if categories.active != blank %}
- View all {% for category in categories.active %}
- {{ category | link_to }} {% endfor %}
-
{% for artist in artists.active %}
- {{ artist | link_to }} {% endfor %}
-
{% 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.name }}{{ product.default_price | money: theme.money_format }} {% if product_status != blank %} - {{ product_status }}{% endif %}
{% endfor %}