{% set menu = 'about' %}
{% import "Default/macros.html.twig" as macros %}
{% extends 'Default/base.html.twig' %}
{% block content %}
<div class='gpadding {{desktop("vt-60-in")}} {{mobile("vt-10-in")}} '>
<div class='articles {{desktop("flex row space wrap")}} {{mobile("")}}'>
{% for o in 1..6 %}
{{macros.member(o)}}
{% endfor %}
{% if isDesktop() and (list|length % 3) %}
{% for o in 1..(3 - list|length % 3) %}
<i class="third-20"></i>
{% endfor %}
{% endif %}
</div>
<div class='{{desktop("")}}'>
{% include ("Default/counter.html.twig") with {expanded:true} %}
</div>
</div>
{% endblock %}