{% if "localhost" in app.request.server.get('SERVER_NAME') %}
{% set path = asset('images/bonbon.jpg') %}
{% else %}
{% if product.imagesByType('thumbnail') is not empty %}
{% set path = product.imagesByType('thumbnail').first.path|imagine_filter(filter|default('sylius_shop_product_thumbnail')) %}
{% elseif product.images.first %}
{% set path = product.images.first.path|imagine_filter(filter|default('sylius_shop_product_thumbnail')) %}
{% else %}
{% set path = '//placehold.it/200x200' %}
{% endif %}
{% endif %}
<img src="{{ path }}" alt="{{ product.name }} " {% if class is defined %}class="{{ class }}"{% endif %} {{ sylius_test_html_attribute('main-image') }} />