{% set images = product.imagesByType('main') %}
{% if images|length %}
{% set path = images.first.path | imagine_filter(filter|default('app_shop_product_thumbnail')) %}
{% set pathSmall = images.first.path | imagine_filter(filter|default('app_shop_product_tiny_thumbnail')) %}
{% elseif product.images.first %}
{% set path = product.images.first.path | imagine_filter(filter|default('app_shop_product_thumbnail')) %}
{% set pathSmall = product.images.first.path | imagine_filter(filter|default('app_shop_product_tiny_thumbnail')) %}
{% else %}
{% set path = 'https://via.placeholder.com/260x260' %}
{% set pathSmall = 'https://via.placeholder.com/260x260' %}
{% endif %}
<img class="lazy product-img img-fluid w-100" src="{{ pathSmall }}" data-src="{{ path }}" {{ sylius_test_html_attribute('main-image') }} alt="{{ product.name }}">