socialbase-1.1.0/templates/system/image.html.twig
templates/system/image.html.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.
*
* @see template_preprocess_image()
*
* @ingroup themeable
*/
#}
{% if style_name == 'social_large' %}
{% set classes = [
'hero-avatar'
] %}
{% else %}
{% set classes = [
theme.settings.image_shape ? theme.settings.image_shape,
theme.settings.image_responsive ? 'img-responsive',
] %}
{% endif %}
<img{{ attributes.addClass(classes) }} />
