v1/web/modules/custom/carousel/templates/carousel-views.html.twig

12 lines
312 B
Twig

{% if attributes -%}
<div{{ attributes }}>
{% endif %}
{% if title %}
<h3 class="views-title">{{ title }}</h3>
{% endif %}
{% for row in rows %}
<div{{ row.attributes.addClass('owl-item-cont') }}>{{ row.content }}</div>
{% endfor %}
{% if attributes -%}
</div>
{% endif %}