templates/deal/Block/deal_gridList.html.twig line 1

Open in your IDE?
  1. <div class="deal-grid row">
  2.     {% for deal in entities %}
  3.         <div class="col-sm-6 col-12">
  4.             {% include template|default('deal/Block/deal_gridItem.html.twig') with {deal: deal, hasLink: not deal.isFundingComplete and not deal.expired} %}
  5.         </div>
  6.         {% if closableBox is defined and loop.index == 6 %}
  7.             {% include 'partials/closable_modal.html.twig' with {id: closableBox.id, template: closableBox.template} %}
  8.         {% endif %}
  9.     {% endfor %}
  10. </div>