{% extends '@kohinos/common/layout.html.twig' %} {% block content %}
{% include '@kohinos/block/breadcrumb.html.twig' with {'label' : 'Rubriques'|trans} %}

{{ 'Rubriques'|trans }}

{% for rubrique in rubriques %} {% if rubrique.prestataires|length > 0 %}
{% if rubrique.media is not null %} {% thumbnail rubrique.media, 'small' %} {% endif %} {{rubrique.name}}
{% if rubrique.content|length > 0 %}
{{rubrique.content|raw}}
{% endif %}
    {% for presta in rubrique.prestataires %}
    {% include '@kohinos/presta/onepresta.html.twig' with { 'withrubrique': false} %}
    {% endfor %}
{% endif %} {% endfor %}
{% endblock %}