{% if editmode %}
{{ pimcore_image(name, {
thumbnail: thumbnail,
class: class|default(''),
lowQualityPlaceholder: lowQualityPlaceholder|default(false),
})|raw }}
{% elseif not pimcore_image(name).empty %}
{% set description = getImageDescription(pimcore_image(name).image, true) %}
{% if not title|default(null) %}
{% set title = description %}
{% endif %}
{% if not alt|default(null) %}
{% set alt = description %}
{% endif %}
{% do elements_opengraph().addImage(pimcore_image(name).thumbnail(thumbnail).path) %}
{% if printTwiceLowQAndNoLowQPlaceholder|default(false) %}
{% if not editmode %}
{{ pimcore_image(name).thumbnail(thumbnail).html({
lowQualityPlaceholder: true,
imgAttributes: {
class: class|default(''),
title: title,
alt: alt,
loading: 'eager'
},
})|raw }}
{% endif %}
{{ pimcore_image(name).thumbnail(thumbnail).html({
imgAttributes: {
class: class|default(''),
title: title,
alt: alt,
loading: 'eager'
},
pictureAttributes: {
fetchpriority: 'high',
},
})|raw }}
{% else %}
{{ pimcore_image(name).thumbnail(thumbnail).html({
lowQualityPlaceholder: lowQualityPlaceholder|default(false),
imgAttributes: {
class: class|default(''),
title: title,
alt: alt
}
})|raw }}
{% endif %}
{% endif %}