templates/Default/members.html.twig line 1

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