You are here

image.html.twig in Drupal 8

Default theme implementation of an image.

Available variables:

  • attributes: HTML attributes for the img tag.
  • style_name: (optional) The name of the image style applied.

File

core/modules/system/templates/image.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation of an image.
  5. *
  6. * Available variables:
  7. * - attributes: HTML attributes for the img tag.
  8. * - style_name: (optional) The name of the image style applied.
  9. *
  10. * @see template_preprocess_image()
  11. *
  12. * @ingroup themeable
  13. */
  14. #}
  15. <img{{ attributes }} />

Related topics