{% extends 'base.html.twig' %} {% block title %}{{ member.displayName }} - Na+{% endblock %} {% block body %}
{# ===== HEADER ===== #}
{# Avatar + statut #}
{% if member.avatarPath %} Avatar {% else %}
{{ member.firstName|first|upper }}{{ member.lastName|first|upper }}
{% endif %}
{{ member.isOnline ? 'En ligne' : 'Hors ligne' }}
{# Nom + compteurs #}

{{ member.displayName }}

{% if member.pronouns or member.birthDate %}
{% if member.pronouns %}({{ member.pronouns }}){% endif %} {% if member.birthDate %} {% if member.pronouns %} · {% endif %} {{ (("now"|date('Y')) - (member.birthDate|date('Y'))) - ((("now"|date('md')) < (member.birthDate|date('md'))) ? 1 : 0) }} ans {% endif %}
{% endif %} {% if member.moodStatus %}
{{ member.moodStatus }}
{% endif %}
{{ followersCount }}
followers
{{ followingCount }}
suivi(e)s
{# Bouton Suivre #}
{% if followStatus == 'accepted' %} {% elseif followStatus == 'pending' %} {% else %} {% endif %}
{# ===== BLOCS INFO ===== #}
{# Biographie — toujours visible #} {% if member.biography %}

Biographie

{{ member.biography }}

{% endif %} {# Neuro-atypie — uniquement si public #} {% if member.neuroProfile and member.neuroProfileVisibility == 'public' %}

Ma neuro-atypie en quelques mots

{{ member.neuroProfile }}

{% endif %} {# Centres d'intérêts — uniquement si public #} {% if member.specialInterests and member.specialInterestsVisibility == 'public' %}

Mes centres d'intérêts :

{{ member.specialInterests }}

{% endif %} {# Géolocalisation — affiché uniquement si public ET données présentes #} {% if (member.geoDepartment or member.geoRegion) and member.geoVisibility == 'public' %}

Localisation

{% if member.geoDepartment %}
Département — {{ member.geoDepartment }}
{% endif %} {% if member.geoRegion %}
Région — {{ member.geoRegion }}
{% endif %}
{% endif %} {# Humeur + jauge #} {% if member.moodStatus or member.moodEnergy is not null %}

Humeur du moment

{% if member.moodStatus %}
{{ member.moodStatus }}
{% endif %}
😴
🤩 {{ member.moodEnergy }}/10
{% endif %}
{# ===== ONGLETS PUBLICATIONS ===== #}
{# Onglets #}
{# ===== ONGLET POSTS ===== #}
{% if posts|length == 0 %}

Aucune publication.

{% else %}
{% for post in posts %}
{{ post.createdAt|date('d/m/Y à H:i') }}
{{ post.content|slice(0,120) }}{% if post.content|length > 120 %}…{% endif %}
{% if post.imagePath %} {% endif %}
❤️ {{ post.likes|length }} 💬 {{ post.comments|length }}
{% endfor %}
{% endif %}
{# ===== ONGLET PHOTOS ===== #} {# ===== ONGLET COMMENTAIRES ===== #} {# ===== ONGLET LIKES ===== #}
{# Retour #}
← Retour au fil d'actu
{% endblock %}