templates/application/partial/picture.html.twig line 1

Open in your IDE?
  1. {% if image and image.file is defined %}
  2.     {% set useOriginal = image.useOriginal %}
  3.     {% set image = image.file %}
  4. {% else %}
  5.     {% set useOriginal = false %}
  6. {% endif %}
  7. {% if image %}
  8.     {% if useOriginal %}
  9.         <img src="{{ fileUrl(image) }}" width="{{ width }}" height="{{ height }}" alt="" loading="lazy">
  10.     {% else %}
  11.         <picture>
  12.             <source type="image/webp" srcset="{{ webpImage(image, width, height) }} 2x" media="(max-width: 480px)">
  13.             <source type="image/webp" srcset="{{ webpImage(image, width, height) }}, {{ webpImage(image, width * 2, height * 2) }} 2x">
  14.             <img src="{{ resizeImage(image, width, height) }}" srcset="{{ resizeImage(image, width * 2, height * 2) }} 2x" alt="" width="{{ width }}" height="{{ height }}" loading="lazy">
  15.         </picture>
  16.     {% endif %}
  17. {% else %}
  18.     <img src="/img/nophoto.svg" width="{{ width }}" height="{{ height }}" alt="Пока нет фото">
  19. {% endif %}