{% extends 'base.html.twig' %} {% block seo %} {{ seo.title|default('FAQ') }} {% endblock %} {% block structured_data %} {% if groups|length > 0 %} {% endif %} {% endblock %} {% block body %}

{{ title_page }}

{% if groups|length == 0 %}

Aucune question pour le moment.

{% else %} {% for group in groups %} {% if group.category %}

{{ group.category.name }}

{% endif %}
{% for faq in group.faqs %}

{{ faq.content|raw }}
{% endfor %}
{% endfor %} {% endif %}
{% endblock %}