jfu-1.0.x-dev/templates/components/jfu_image.html.twig
templates/components/jfu_image.html.twig
{% if type == 'banner' %}
<picture>
<source media="(max-width: 768px)" srcset="{{ file_url(responsive_image.value) }}">
<img loading="lazy" src="{{ file_url(json_array.value) }}" alt="{{ json_array.alt }}" title="{{ json_array.title }}" width="{{ json_array.width }}" height="{{ json_array.height }}">
</picture>
{% else %}
<img loading="lazy" src="{{ file_url(json_array.value) }}" alt="{{ json_array.alt }}" title="{{ json_array.title }}" width="{{ json_array.width }}" height="{{ json_array.height }}">
{% endif %}
