Blackbird
{% 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 %} {% endif %} {% if products != blank %} {% if theme.product_list_layout == "stacked" %} {% for product in products %}

{{ 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 %}
{% for product in products %} Image of {{ product.name | escape }}

{{ product.name | truncate: 30 }}

{% case product.status %} {% when 'active' %}

{{ product.default_price | money_with_sign }} {% if product.on_sale %}{% endif %}

{% when 'sold-out' %}

Sold out

{% when 'coming-soon' %}

Coming soon

{% endcase %}
{% endfor %}
{% endif %} {% if paginate.previous.is_link or paginate.next.is_link %} {% endif %} {% else %}

No products found

{% endif %} {% endpaginate %}