{{ product.name }}
{% for artist in product.artists %}
{% if forloop.first %}
by {{ artist.name }}
{% if forloop.length > 2 %}, {% endif %}
{% elsif forloop.last %}
and {{ artist.name }}
{% else %}
{{ artist.name }}
,
{% endif %}
{% endfor %}
{% case product.status %}
{% when 'sold-out' %}
{{ product.default_price | money_with_sign }} / Sold Out
{% when 'coming-soon' %}
{{ product.default_price | money_with_sign }} / Coming Soon
{% when 'active' %}
{{ product.default_price | money_with_sign }}{% if product.on_sale %} / On Sale{% endif %}
{% endcase %}
{% if product.description != blank %}
{{ product.description | paragraphs }}
{% endif %}
{% if theme.show_inventory_bars %}
{% case product.status %}
{% when 'active' %}
Availability
{% for option in product.options %}
-
{% unless product.has_default_option %}{{ option.name }}{% endunless %}
{% if option.sold_out %}Sold Out{% else %}{{ option.inventory }}%{% endif %}
{% endfor %}
{% endcase %}
{% endif %}