{% paginate products from products.current by theme.products_per_page %}
Products
- All {% for category in categories.active %}
- {{ category | link_to }} {% endfor %}
Artists
-
{% for artist in artists.active %}
- {{ artist | link_to }} {% endfor %}
-
{% endif %}
-
{{ product.name }}
{{ product.default_price | money_with_sign }}
{% case product.status %} {% when 'active' %} {% if product.on_sale %}On Sale
{% endif %} {% when 'sold-out' %}Sold Out
{% when 'coming-soon' %}Coming Soon
{% endcase %}
{% if forloop.last %}
Products
- All {% for category in categories.active %}
- {{ category | link_to }} {% endfor %}
Artists
-
{% for artist in artists.active %}
- {{ artist | link_to }} {% endfor %}
No products found.
{% endif %} {% endpaginate %}