8 lines
213 B
Twig
8 lines
213 B
Twig
<div {{ '{{ attributes }}' }}>
|
|
{% if component_slots|length > 0 %}
|
|
{% for slot in component_slots %}
|
|
{{ '{% block ' }}{{ slot.name }}{{ ' %}' }}{{ '{% endblock %}' }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
</div>
|