templates\parts\_img.html.twig line 1

Open in your IDE?
  1. {% if imageSingleFlag is defined and imageSingleFlag == true %}
  2.     <img src="{% if imagePath is not defined %}/build/{{subPath}}{% else %}{#/build/{{subPath}}/img/"#}{{imagePath}}{% endif %}{{ imageName }}"
  3.        {% if imgAlt is defined %}
  4.             alt="{{imageAlt}}"
  5.        {% else %}     
  6.             alt="#"
  7.        {% endif %}
  8.        {% if imgType is defined %}
  9.             type="{{imageType}}"
  10.        {% endif %}
  11.          />
  12. {% else %}
  13.     <picture>
  14.         <source 
  15.                 srcset="/build/{{subPath}}/img/courses/{{ imageName }}.webp, 
  16.                 /build/{{subPath}}/img/courses/{{ imageName }}@2x.webp 2x" 
  17.                 type="image/webp"
  18.             >
  19.             <img 
  20.                 src="/build/{{subPath}}/img/courses/{{ imageName }}.png" 
  21.                 srcset="/build/{{subPath}}/img/courses/{{ imageName }}@2x.png 2x" 
  22.                 alt="#"
  23.             >
  24.     </picture>
  25. {% endif %}