{% set placeholder_1 %}
{% include '@bolt-components-placeholder/placeholder.twig' with {
text: 'Item 1',
size: 'xsmall',
} only %}
{% endset %}
{% set placeholder_2 %}
{% include '@bolt-components-placeholder/placeholder.twig' with {
text: 'Item 2',
size: 'xsmall',
} only %}
{% endset %}
{% set placeholder_3 %}
{% include '@bolt-components-placeholder/placeholder.twig' with {
text: 'Item 3',
size: 'xsmall',
} only %}
{% endset %}
{% set list_items %}
{% include '@bolt-elements-list/list-item.twig' with {
content: placeholder_1,
} only %}
{% include '@bolt-elements-list/list-item.twig' with {
content: placeholder_2,
} only %}
{% include '@bolt-elements-list/list-item.twig' with {
content: placeholder_3,
} only %}
{% endset %}
{% include '@bolt-elements-list/list.twig' with {
content: list_items
} only %}