src/StartPlatz/Bundle/AlphaBundle/Resources/views/Startup/_feed.startups.homepage.html.twig line 1

Open in your IDE?
  1. {% set currentPath = app.request.get('_route') %}
  2. {% set feed = true %}
  3. {% set numberOfStartupsPerRow = 2 %}
  4. {% for batch in startups|batch(numberOfStartupsPerRow) %}
  5.     <div class="row">
  6.         {% for startup in batch %}
  7.             <div class="col-lg-6 col-sm-10 mb-4">
  8.                 {% include '@StartPlatzAlphaBundle/Startup/_widget.startup.html.twig' %}
  9.             </div>
  10.         {% endfor %}
  11.     </div>
  12. {% endfor %}