{% extends 'base.html.twig' %} {% block title %}Mes Réalisations - Mateo{% endblock %} {% block body %}

Mes Réalisations

{% for type, projets in projetsParType %}

{{ type|capitalize }}

{% for projet in projets %}
{% if projet.image %} {{ projet.titre }} {% endif %}

{{ projet.titre }}

{{ projet.description }}

{% if projet.technologies %}

Technologies : {{ projet.technologies }}

{% endif %}

Créé le {{ projet.dateCreation|date('d/m/Y') }}

{% else %}

Aucun projet pour ce type.

{% endfor %}
{% endfor %}
{% endblock %}