20 lines
453 B
Twig
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) }} />
|