{# Image only dialog #}
{% set image_dialog_content %}
{% set image %}
{% include '@bolt-elements-image/image.twig' with {
attributes: {
src: '/images/placeholders/tout-4x3-climber.jpg',
alt: 'Alt text.',
loading: 'lazy',
width: 640,
height: 480,
}
} only %}
{% endset %}
{% include '@bolt-components-dialog/dialog-body.twig' with {
content: image,
} only %}
{% endset %}
{% include '@bolt-components-dialog/dialog.twig' with {
content: image_dialog_content,
spacing: 'none',
width: 'auto',
transparent: true,
attributes: {
id: 'dialog-image'
},
} only %}
{# Image + caption dialog #}
{% set caption_dialog_content %}
{% set image %}
{% include '@bolt-elements-image/image.twig' with {
attributes: {
src: '/images/placeholders/tout-4x3-climber.jpg',
alt: 'Alt text.',
loading: 'lazy',
width: 640,
height: 480,
}
} only %}
{% endset %}
{% include '@bolt-components-dialog/dialog-body.twig' with {
content: image,
} only %}
{% include '@bolt-components-dialog/dialog-footer.twig' with {
content: 'This is the image caption.',
} only %}
{% endset %}
{% include '@bolt-components-dialog/dialog.twig' with {
content: caption_dialog_content,
spacing: 'small',
width: 'auto',
attributes: {
id: 'dialog-caption'
},
} only %}