templates/Default/members.html.twig line 1

Open in your IDE?
  1. {% set title = cat ? cat.label : "Comité de direction" %}
  2. {% set menu = 'about' %}
  3. {% import "Default/macros.html.twig" as macros %}
  4. {% extends 'Default/base.html.twig' %}
  5. {% block content %}
  6. <div class='gpadding {{desktop("vt-60-in")}} {{mobile("vt-30-in")}} '>
  7.     {% include("Default/filter.html.twig") with {placeholder: "Rechercher une personne ici...", target:".member", search:true} %}
  8.     <div class='articles {{desktop("flex row space wrap")}} {{mobile("")}}'>
  9.         {% for o in list %}
  10.         {{macros.member(o)}}
  11.         {% endfor %}
  12.         {% if isDesktop() and (list|length % 3) %}
  13.         {% for o in 1..(3 - list|length % 3) %}
  14.         <i class="third-20"></i>
  15.         {% endfor %}
  16.         {% endif %}
  17.     </div>
  18.     <div class='{{desktop("")}}'>
  19.     {% include ("Default/counter.html.twig") with {expanded:true} %}
  20.     </div>
  21. </div>
  22. {% endblock %}