{% extends '@App/partials/base_light.html.twig' %} {% block styles %} {{ parent() }} {% endblock %} {% block content %} {% set pageStyle = { bgColor: '#ffffff', bgImageUrl: '' } %} {% for b in presentation.projetBlocks %} {% if b.type == 'page_style' %} {% set pageStyle = b.data %} {% endif %} {% endfor %} {% set formuleBlockPresent = false %}

{{presentation.projet.titre}}

{{presentation.projet.societe.nom}}

{% for block in presentation.projetBlocks|sort((a,b)=> a.position <=> b.position) %} {# --- BLOC TEXTE (rich text TinyMCE) --- #} {% if block.type == 'text' %} {% set titleColor = block.data.titleColor|default('#111827') %} {% set textColor = block.data.textColor|default('#374151') %} {% set backgroundColor = block.data.backgroundColor|default('#ffffff') %}
{% if block.data.titre ?? '' %}

{{ block.data.titre }}

{% endif %} {{ (block.data.text ?? '')|raw }}
{% endif %} {# --- BLOC CHIFFRES (jusqu’à 4) --- #} {% if block.type == 'chiffres' %} {% set titleColor = block.data.titleColor|default('#ffffff') %} {% set textColor = block.data.textColor|default('#ffffff') %} {% set backgroundColor = block.data.backgroundColor|default('#111111') %}
{% set figures = block.data.figures ?? [] %} {% if figures is not empty %}

{{ block.data.titre ?? '' }}

{{ (block.data.text ?? '')|raw }}
{% for fig in figures %}
{{ fig.value ?? '' }}
{{ fig.label ?? '' }}
{% endfor %}
{% endif %}
{% endif %} {# --- BLOC IMAGE (image simple) --- #} {% if block.type == 'image' %} {% set backgroundColor = block.data.backgroundColor|default('#ffffff') %} {% set imageUrl = block.data.imageUrl ?? '' %} {% if imageUrl %}
Image du projet
{% endif %} {% endif %} {# --- BLOC PRESENTATION (2 colonnes : image + texte) --- #} {% if block.type == 'description' %} {% set titleColor = block.data.titleColor|default('#111827') %} {% set textColor = block.data.textColor|default('#374151') %} {% set backgroundColor = block.data.backgroundColor|default('#ffffff') %} {% if block.data.imageUrl is defined %} {% if block.data.imageUrl == '' %} {% set imageUrl = block.data.url %} {% else %} {% set imageUrl = block.data.imageUrl %} {% endif %} {% endif %} {% set text = block.data.text ?? presentation.projet.description ?? '' %}
{% if imageUrl %}
Illustration projet
{% endif %}
{{ (block.data.text ?? '')|raw }}
{% endif %} {# --- BLOC FORMULES (liste non modifiable) --- #} {% if block.type == 'formule' %} {% set formuleBlockPresent = true %} {% set titleColor = block.data.titleColor|default('#111827') %} {% set textColor = block.data.textColor|default('#374151') %} {% set backgroundColor = block.data.backgroundColor|default('#ffffff') %} {# On attend 'formules' passé par le contrôleur : formules du projet #}

Formules de partenariat

{% include '@Projet/projet/presentation/preview/block/formule_public.html.twig' %}
{% endif %} {% if block.type == 'partenaire' %} {% include '@Projet/projet/presentation/preview/block/partenaire.html.twig' %} {% endif %} {# --- PLACEHOLDER pour autres types futurs --- #} {% if block.type not in ['text','chiffres','image','description','formule','partenaire','page_style'] %}
Bloc “{{ block.type }}” non pris en charge dans l’aperçu.
{% endif %} {% else %}
Aucun contenu publié pour le moment.
{% endfor %} {% if not formuleBlockPresent %}
{% endif %}
{% endblock %}