responsive-image-formatter.html.twig
Theme override to display a formatted responsive image field.
Available variables:
- responsive_image: A collection of responsive image data.
 - url: An optional URL the image can be linked to.
 
See also
template_preprocess_responsive_image_formatter()
1 theme call to responsive-image-formatter.html.twig
- ResponsiveImageFormatter::viewElements in core/
modules/ responsive_image/ src/ Plugin/ Field/ FieldFormatter/ ResponsiveImageFormatter.php  - Builds a renderable array for a field value.
 
File
- 
              core/
themes/ stable9/ templates/ field/ responsive-image-formatter.html.twig  
View source
- {#
 - /**
 -  * @file
 -  * Theme override to display a formatted responsive image field.
 -  *
 -  * Available variables:
 -  * - responsive_image: A collection of responsive image data.
 -  * - url: An optional URL the image can be linked to.
 -  *
 -  * @see template_preprocess_responsive_image_formatter()
 -  */
 - #}
 - {% if url %}
 -   <a href="{{ url }}">{{ responsive_image }}</a>
 - {% else %}
 -   {{ responsive_image }}
 - {% endif %}
 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.