image.html.twig 357 B

123456789101112131415161718
  1. {#
  2. /**
  3. * @file
  4. * Theme override 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. #}
  13. {%
  14. set classes = [
  15. style_name ? 'image-style-' ~ style_name|clean_class,
  16. ]
  17. %}
  18. <img{{ attributes.addClass(classes) }} />