// Set a background
{% set background %}
{% set image %}
{% include '@bolt-elements-image/image.twig' with {
background: true,
attributes: {
src: '/images/content/backgrounds/background-tall-4.jpg'
},
} only %}
{% endset %}
{% include '@bolt-components-background/background.twig' with {
opacity: 'heavy',
fill: 'gradient',
focalPoint: {
vertical: 'center',
horizontal: 'center'
},
items: [
image
]
} only %}
{% endset %}
// Pass the background to the background prop
{% include '@bolt-layouts-layout/layout.twig' with {
background: background,
attributes: {
class: 't-bolt-dark',
},
...
} only %}