Same filename in this branch
  1. 10 core/modules/image/templates/image-formatter.html.twig
  2. 10 core/themes/stable9/templates/field/image-formatter.html.twig
  3. 10 core/themes/starterkit_theme/templates/field/image-formatter.html.twig
Same filename and directory in other branches
  1. 8.9.x core/modules/image/templates/image-formatter.html.twig
  2. 9 core/modules/image/templates/image-formatter.html.twig

Default theme implementation to display a formatted image field.

Available variables:

  • image: A collection of image data.
  • image_style: An optional image style.
  • url: An optional URL the image can be linked to.

See also

template_preprocess_image_formatter()

1 theme call to image-formatter.html.twig
ImageThemeFunctionTest::testImageFormatterTheme in core/modules/image/tests/src/Kernel/ImageThemeFunctionTest.php
Tests usage of the image field formatters.

File

core/modules/image/templates/image-formatter.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display a formatted image field.
  5. *
  6. * Available variables:
  7. * - image: A collection of image data.
  8. * - image_style: An optional image style.
  9. * - url: An optional URL the image can be linked to.
  10. *
  11. * @see template_preprocess_image_formatter()
  12. *
  13. * @ingroup themeable
  14. */
  15. #}
  16. {% if url %}
  17. {{ link(image, url) }}
  18. {% else %}
  19. {{ image }}
  20. {% endif %}

Related topics