stack/src/components/groups/documents-group/documents-group.twig line 1

Open in your IDE?
  1. {% if props.items %}
  2.   <div class="g-documents gy-4 row">
  3.     {% for item in props.items %}
  4.       <div class="g-documents__cell col-md-6 col-xl-4">
  5.         {% include "@Components/items/document-item/document-item.twig" with {props: item} %}
  6.       </div>
  7.     {% endfor %}
  8.   </div>
  9. {% endif %}