{% if product.images.count > 1 %}
{% for image in product.images %}
-
{% endfor %}
{% for image in product.images %}
{% endfor %}
{% else %}
{% endif %}
{% if product.upsells.isEmpty() == false and theme.crossSellToggle == true %}
Related items
{% for product in product.crosssells %}
{{ partial('shop-product-related-item', {'product':product}) }}
{% endfor %}
{% for product in product.upsells %}
{{ partial('shop-product-related-item', {'product':product}) }}
{% endfor %}
{% endif %}