{% block component_line_item_image %} {% set thumbnail %} {% if lineItem.cover.url and lineItem.cover.isSpatialObject() == false %} {% set attributes = { class: 'img-fluid line-item-img', title: (lineItem.cover.translated.title ?: '') } %} {% if lineItem.cover.getMediaType().getName() === 'VIDEO' %} {% block component_line_item_video %} {% sw_include '@Storefront/storefront/utilities/video.html.twig' with { media: lineItem.cover, attributes: attributes } %} {% endblock %} {% else %} {% set attributes = attributes|merge({ alt: (lineItem.cover.translated.alt ?: label), loading: 'lazy' }) %} {% block component_line_item_image_thumbnails %} {% sw_thumbnails 'line-item-img-thumbnails' with { media: lineItem.cover, sizes: { default: '100px' }, attributes: attributes } %} {% endblock %} {% endif %} {% else %} {% if fallbackIcon %} {% block component_line_item_image_fallback_icon %}
{% endblock %} {% else %} {% block component_line_item_image_placeholder %} {% sw_include '@Storefront/storefront/utilities/icon.html.twig' with { name: 'placeholder', size: 'fluid' } %} {% endblock %} {% endif %} {% endif %} {% endset %} {% if lineItemLink %} {{ thumbnail }} {% else %} {{ thumbnail }} {% endif %} {% endblock %}