{% if categories.active != blank or artists.active != blank %}
  • All
  • {% for category in categories.active %}
  • {{ category | link_to }}
  • {% endfor %}
{% if artists.active != blank %}
    {% for artist in artists.active %}
  • {{ artist | link_to }}
  • {% endfor %}
{% endif %}
{% endif %}

{{ page.name }}

{% paginate products from products.current by theme.products_per_page %} {% if products != blank %}
{% for product in products %} {% assign image_width = product.image.width | times: 1.0 %} {% assign image_height = product.image.height | times: 1.0 %} {% assign aspect_ratio = image_width | divided_by: image_height %} {% 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 %} {% endfor %}
{% if paginate.pages > 1 %} {{ paginate | default_pagination }} {% endif %} {% else %}
No products found.
{% endif %} {% endpaginate %}