templates/app/videos_list.html.twig line 1

Open in your IDE?
  1. {% for video in videos %}
  2.     {{ include('grid_videos.html.twig') }}
  3.     {% if loop.index is divisible by(11) %}
  4.         {{ include('grid_vip_card.html.twig') }}
  5.     {% endif %}
  6. {% endfor %}