{% for image in product.images %}
{% endfor %}
{% if product.featured_image %}
{% else %}
No image
{% endif %}
{{ product.title }}
{{ current_variant.price | money }}
{{ product.description }}
{% for tag in product.tags %}
{% assign parts = tag | split: ':' %}
{% if parts.size == 2 %}
{{ parts[0] }}{{ parts[1] }}
{% endif %}
{% endfor %}