Produits
{% set cat = '' %}
{% for item in products %}
{% if item[0].domaine != cat %}
{{item[0].domaine.title}}
{% set cat = item[0].domaine %}
{% set subcat = '' %}
{% endif %}
{% if item[0].activity != subcat %}
{{item[0].activity.title}}
{% set subcat = item[0].activity %}
{% endif %}
{{item[0].titre}}
{% endfor %}