file image.html.twig
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.
See Also
- {#
- /**
- * @file
- * 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.
- *
- * @ingroup templates
- *
- * @see template_preprocess_image()
- */
- #}
- {% set classes = [
- theme.settings.image_shape ? theme.settings.image_shape,
- theme.settings.image_responsive ? 'img-responsive',
- ] %}
- <img{{ attributes.addClass(classes) }} />