{% extends 'base.html.twig' %} {% block seo %} {{ seo.title|default('Nos realisations') }} — {{ site.name|default('') }} {% endblock %} {% block body %}

{{ title_page }}

{# --- Filtres categories --- #} {% if categories|length > 1 %}
Toutes {% for cat in categories %} {% if cat.icon %}{% endif %} {{ cat.name }} {% endfor %}
{% endif %} {# --- Grille --- #} {% if items|length > 0 %}
{% for item in items %} {% include '_partials/_portfolio_card.html.twig' with { item: item } %} {% endfor %}
{% else %}

Aucune realisation disponible pour le moment.

{% endif %}
{% endblock %}