themes/BootstrapTheme/templates/bundles/SyliusShopBundle/Product/_mainImage.html.twig line 1

Open in your IDE?
  1. {% if "localhost" in app.request.server.get('SERVER_NAME') %}
  2.     {% set path = asset('images/bonbon.jpg') %}
  3. {% else %}
  4.     {% if product.imagesByType('thumbnail') is not empty %}
  5.         {% set path = product.imagesByType('thumbnail').first.path|imagine_filter(filter|default('sylius_shop_product_thumbnail')) %}
  6.     {% elseif product.images.first %}
  7.         {% set path = product.images.first.path|imagine_filter(filter|default('sylius_shop_product_thumbnail')) %}
  8.     {% else %}
  9.         {% set path = '//placehold.it/200x200' %}
  10.     {% endif %}
  11. {% endif %}
  12. <img src="{{ path }}" alt="{{ product.name }} " {% if class is defined %}class="{{ class }}"{% endif %} {{ sylius_test_html_attribute('main-image') }} />