eleven-8.x-1.0-beta5/eleven/templates/layout-landing/paragraphs/table--structure-paragraphs-type.html.twig
eleven/templates/layout-landing/paragraphs/table--structure-paragraphs-type.html.twig
{{ attach_library('eleven/card') }}
{% if rows %}
{% include themepath ~ '/templates/component/navigation/cardlayout/cardlayout.html.twig' %}
<section{{ attributes.addClass('js-card-layout-target').setAttribute('aria-label', section_title) }}>
{% for row in rows %}
<article {{ row.attributes.addClass('card').setAttribute('aria-label', row.cells.label.content) }}>
<h3 class="card__title card__title--icon card__title--icon-paragraphs">
{{ row.cells.label.content}}
</h3>
<p class="card__text">
</p>
<div class="card__operations L-center">
{{ row.cells.operations.content }}
</div>
</article>
{% endfor %}
{% endif %}
