You are here

image-style.html.twig in Drupal 8

Default theme implementation for an image using a specific image style.

Available variables:

  • attributes: HTML attributes for the image, including the following:

    • src: Full URL or relative path to the image file.
    • class: One or more classes to be applied to the image.
    • width: The width of the image (if known).
    • height: The height of the image (if known).
    • title: The title of the image.
    • alt: The alternative text for the image.

File

core/modules/image/templates/image-style.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for an image using a specific image style.
  5. *
  6. * Available variables:
  7. * - attributes: HTML attributes for the image, including the following:
  8. * - src: Full URL or relative path to the image file.
  9. * - class: One or more classes to be applied to the image.
  10. * - width: The width of the image (if known).
  11. * - height: The height of the image (if known).
  12. * - title: The title of the image.
  13. * - alt: The alternative text for the image.
  14. *
  15. * @see template_preprocess_image_style()
  16. *
  17. * @ingroup themeable
  18. */
  19. #}
  20. {{ image }}

Related topics