{% extends 'base.html.twig' %} {% block title %}Mon Profil {% endblock %} {% block body %}

Mon Profil

Blog Mรฉmento {% if app.user %}
You are logged in as {{ app.user.userIdentifier }}, Logout
{% endif %}
{% for profil in profils %}

{{ profil.getTitle() }}

{{ profil.getText() }}

{% for content in profil.getCardContents %} ๐Ÿ“„ {{ content.title}} {% endfor %}
{% endfor %}
{% for ecole in ecoles %}

{{ ecole.getTitle() }}

{{ ecole.getText() }}

{% for content in ecole.getCardContents %} ๐Ÿ“„ {{ content.title}} {% endfor %}
{% endfor %}
{% for pro in pros %}

{{ pro.getTitle() }}

{{ pro.getText() }}

{% for content in pro.getCardContents %} ๐Ÿ“„ {{ content.title}} {% endfor %}
{% endfor %}
{% endblock %}