{% extends 'base.html.twig' %} {% block title %}Mon compte - Na+{% endblock %} {% block body %} {# ===== BANNIÈRE + HEADER ===== #} {# Bannière #} {% if user.bannerPath %} {% else %} {% endif %} {# Bouton Modifier en position absolue pour ne pas perturber le centrage #} Modifier {# Avatar centré chevauchant la bannière #} {% if user.avatarPath %} {% else %} {{ user.firstName|first|upper }}{{ user.lastName|first|upper }} {% endif %} {# Textes tous centrés #} {{ user.displayName }} {% if user.pronouns %} ({{ user.pronouns }}) {% endif %} {% if user.biography %} {{ user.biography }} {% endif %} {% if user.geoRegion or user.geoDepartment %} 📍 {{ user.geoRegion ?? user.geoDepartment }} {% endif %} {% if user.website %} 🔗 {{ user.website|replace({'https://':'','http://':''}) }} {% endif %} {# ===== ONGLETS ===== #} {# Barre d'onglets #} Mes posts ({{ posts|length }}) Mes photos ({{ posts|filter(p => p.imagePath)|length }}) Mes commentaires ({{ comments|length }}) Mes likes ({{ likes|length }}) {# ===== POSTS ===== #} {% if posts is empty %} Tu n'as pas encore publié. {% else %} {% for post in posts %} {{ post.createdAt|date('d/m/Y à H:i') }} {% if post.community %} {{ post.community.name }} {% endif %} {% if post.content %} {{ post.content|nl2br }} {% endif %} {% if post.imagePath %} {% endif %} ❤️ {{ post.likes|length }} 💬 {{ post.comments|length }} Voir sur le fil → {% endfor %} {% endif %} {# ===== PHOTOS ===== #} {% set photoPosts = posts|filter(p => p.imagePath) %} {% if photoPosts is empty %} Aucune photo publiée. {% else %} {% for post in photoPosts %} {% endfor %} {% endif %} {# ===== COMMENTAIRES ===== #} {% if comments is empty %} Aucun commentaire. {% else %} {% for comment in comments %} {{ comment.createdAt|date('d/m/Y à H:i') }} {{ comment.content|slice(0,150) }}{% if comment.content|length > 150 %}…{% endif %} Sur le post de {{ comment.post.author.displayName }} {% endfor %} {% endif %} {# ===== LIKES ===== #} {% if likes is empty %} Aucun like. {% else %} {% for like in likes %} Post de {{ like.post.author.displayName }} — {{ like.post.createdAt|date('d/m/Y') }} ❤️ {{ like.post.content|slice(0,120) }}{% if like.post.content|length > 120 %}…{% endif %} {% endfor %} {% endif %} ← Retour au fil d'actu {% endblock %}
{{ user.biography }}
Tu n'as pas encore publié.
Aucune photo publiée.
Aucun commentaire.
Aucun like.