{{ product.name }}

{% for artist in product.artists %} {% if forloop.first %}

by {% endif %} {% if forloop.last and forloop.length > 1 %} and {% endif %} {{ artist.name }} {% if forloop.length > 2 %}, {% endif %} {% if forloop.last %}

{% endif %} {% endfor %}

{% if product.variable_pricing %} {{ product.min_price | money: theme.money_format }} - {{ product.max_price | money: theme.money_format }} {% else %} {{ product.default_price | money: theme.money_format }} {% endif %} {% case product.status %} {% when 'sold-out' %} / Sold Out {% when 'coming-soon' %} / Coming Soon {% endcase %} {% if product.on_sale %} / On Sale {% endif %}

{% if product.status == 'active' %}
{% if product.has_default_option %} {{ product.option | hidden_option_input }} {% else %} {% if product.has_option_groups %}
{% for option_group in product.option_groups %}
{% endfor %}
{% else %}
{% endif %} {% endif %} {{ store | instant_checkout_button: 'light', '36px' }} {% if product.has_option_groups %}
{% endif %}
{% endif %} {% 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 %}