forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
14 lines
324 B
Twig
14 lines
324 B
Twig
{% if attributes -%}
|
|
<div{{ attributes }}>
|
|
{% endif %}
|
|
{% if title %}
|
|
<h3 class="views-title">{{ title }}</h3>
|
|
{% endif %}
|
|
|
|
{% for row in rows %}
|
|
<div{{ row.attributes.addClass(grid_classes, 'grid-item') }}>{{ row.content }}</div>
|
|
{% endfor %}
|
|
|
|
{% if attributes -%}
|
|
</div>
|
|
{% endif %} |