{% 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 %}
{% if product.description != blank %}
{{ product.description | paragraphs }}
{% endif %}