templates/content/imageset/topmonth.html.twig line 1

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