You are here

image.html.twig in Image Lazyloader 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

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. {% set classes = [
  16. theme.settings.image_shape ? theme.settings.image_shape,
  17. theme.settings.image_responsive ? 'img-responsive',
  18. ] %}
  19. <img{{ attributes.addClass(classes) }} />
  20. {% if old_attributes %}
  21. <noscript>
  22. <img{{ old_attributes.addClass(classes) }} />
  23. </noscript>
  24. {% endif %}