Files
DrupalTutorial/themes/bootstrap/templates/system/image.html.twig
2024-07-15 12:33:27 +02:00

20 lines
453 B
Twig

{#
/**
* @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) }} />