templates/shop_video/Block/shop_video_gridList.html.twig line 1

Open in your IDE?
  1. <div class="shop-video-grid row">
  2.     {% for shop_video in entities %}
  3.         <div class="col-lg-4 col-sm-6 col-12">
  4.             {% include template|default('shop_video/Block/shop_video_gridItem.html.twig') with {shop_video: shop_video, hasLink: hasLink} %}
  5.         </div>
  6.     {% endfor %}
  7. </div>