{% set title = "La bancassurance"|os_trans("Insurances") %}
{% set menu = 'insurances' %}
{% import "Macros/insurance.html.twig" as insurance %}
{% extends 'Default/base.html.twig' %}
{% block content %}
{% for o in list %}
{{insurance.render(o)}}
{% endfor %}
{% if isDesktop() and (list|length % 3) %}
{% for o in 1..(3 - list|length % 3) %}
{% endfor %}
{% endif %}