templates/bootstrap/grid_collection.html.twig line 1

Open in your IDE?
  1. {% if gutterSize is not defined %}{% set gutterSize = 4 %}{% endif %}<div class="row row-cols-{{ itemsPerRow }} g-{{ gutterSize }}">
  2.     {% for item in collection %}
  3.         <div class="col">
  4.             {% if commonTemplate is defined %}
  5.                 {% include commonTemplate with item %}
  6.             {% else %}
  7.                 {{ item | raw }}
  8.             {% endif %}
  9.         </div>
  10.     {% endfor %}
  11. </div>