templates/Default/videos.html.twig line 1
{% set title = 'Vidéos' %}
{% set menu = 'articles' %}
{% import "Default/macros.html.twig" as macros %}
{% extends 'Default/base.html.twig' %}
{% block content %}
<div class='bg-white {{desktop("hz-50 vt-50-in")}} {{mobile("bottom-20-in")}} '>
<div class='w100 articles {{desktop("")}} {{mobile("")}}'>
<div class='w100 {{desktop("gpadding flex row space wrap")}} {{mobile("hz-20-in top-30")}}'>
{% for o in list %}
{{macros.video(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>
<div class='{{desktop("")}} {{mobile("vt-20-in")}}'>
{% include ("Default/counter.html.twig") with {expanded:true} %}
</div>
</div>
{% endblock %}