templates/content/video/topweek.html.twig line 1

Open in your IDE?
  1. {% extends baseTemplateName(app.request) %}
  2. {% block title_suffix %}Top Videos der Woche - Seite {{ page }}{% endblock %}
  3. {% block body %}
  4.     {% include '_structure/menu-tabs-video.html.twig' %}
  5.     {# https://interquest.atlassian.net/browse/FE-7
  6.     <div class="filter row align-items-center bg-grey-10 py-3 mx-0 mb-4">
  7.         <h6 class="col-1 mb-0">Filter:</h6>
  8.         <form class="col-11">
  9.             <select class="col-3 mr-3 form-control custom-select"><option>Geschlecht: bitte wählen</option></select>
  10.             <select class="col-3 mr-3 form-control custom-select"><option>Alter: bitte wählen</option></select>
  11.             <select class="col-3 form-control custom-select"><option>PLZ: bitte wählen</option></select>
  12.         </form>
  13.     </div>
  14.     #}
  15.     <div class="resultlist row">
  16.         {% for video in videos %}
  17.             {% include '_widgets/home-content-video.html.twig' with { video: video } %}
  18.         {% endfor %}
  19.     </div>
  20.     {% if videos|length %}
  21.         {{ knp_pagination_render(videos) }}
  22.     {% endif %}
  23. {% endblock %}