{% paginate products from products.current by theme.products_per_page %}
{% if categories.active != blank or artists.active != blank %}
{% if page.name == 'Products' %}All Products{% else %}{{ page.name | truncate: 20 }}{% endif %}
{% if categories.active != blank %}
{% if artists.active != blank %}{% endif %}
- All
{% for category in categories.active %}- {{ category | link_to }}
{% endfor %}
{% endif %}
{% if artists.active != blank %}
{% if categories.active != blank %}{% endif %}
- All
{% for artist in artists.active %}- {{ artist | link_to }}
{% endfor %}
{% endif %}
{% endif %}
{% if products != blank %}
{% if theme.product_list_layout == "stacked" %}
{% for product in products %}
{% for image in product.images %}
-
{% endfor %}
{{ product.name | truncate: 75 }}
{% case product.status %}
{% when 'active' %}
{% if product.on_sale %}On sale!{% endif %} {{ product.default_price | money_with_sign }}
{% when 'sold-out' %}
Sold out
{% when 'coming-soon' %}
Coming soon
{% endcase %}
{% endfor %}
{% else %}
{% endif %}
{% if paginate.previous.is_link or paginate.next.is_link %}
{% if paginate.previous %}{% if paginate.previous.is_link %}- Previous
{% endif %}{% endif %}{% if paginate.next %}{% if paginate.next.is_link %}- Next
{% endif %}{% endif %}
{% endif %}
{% else %}
No products found
{% endif %}
{% endpaginate %}