media_helper-2.0.0/tests/modules/media_helper_test_with_picture_attributes/templates/responsive-image.html.twig
tests/modules/media_helper_test_with_picture_attributes/templates/responsive-image.html.twig
{#
/**
* @file
* Override of responsive image template.
*/
#}
{% if output_image_tag %}
{{ img_element }}
{% else %}
<picture{{ attributes }}>
{% if sources %}
{% for source_attributes in sources %}
<source{{ source_attributes }}/>
{% endfor %}
{% endif %}
{# The controlling image, with the fallback image in srcset. #}
{{ img_element }}
</picture>
{% endif %}
