{% extends 'about/about_layout.html.twig' %} {% block page_title %}{{ 'menu.about'|trans }} | Notre Impact{% endblock %} {% block extra_css %} .impact-card { background: #f8f9fa; padding: 40px; border-radius: 20px; height: 100%; border-left: 5px solid #F59E00; transition: all 0.3s ease; } .impact-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); } .project-btn-large:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(245, 158, 0, 0.3); color: #0E1641; } {% endblock %} {% block about_content %}

{{ app.request.locale == 'en' ? 'Our Impact' : 'Notre Impact' }}

{% set impactIntro = (app.request.locale == 'en' and aboutinformation.impactIntroEn) ? aboutinformation.impactIntroEn : aboutinformation.impactIntro %} {% if impactIntro %}
{{ impactIntro|raw }}
{% endif %}
{% for i in 1..4 %} {% set point = (app.request.locale == 'en' and attribute(aboutinformation, 'impactPoint' ~ i ~ 'En')) ? attribute(aboutinformation, 'impactPoint' ~ i ~ 'En') : attribute(aboutinformation, 'impactPoint' ~ i) %} {% if point %}
{{ point|raw }}
{% endif %} {% endfor %}
{% set finalImpact = (app.request.locale == 'en' and aboutinformation.impactPoint5En) ? aboutinformation.impactPoint5En : aboutinformation.impactPoint5 %} {% if finalImpact %}
{{ finalImpact|raw }}
{% endif %} {% if aboutinformation.impactVideoUrl %}
{% set youtubeIdImp = aboutinformation.impactVideoUrl|split('v=')|last %}

{{ app.request.locale == 'en' ? 'Flagship Project Video' : 'Vidéo d\'un projet phare' }}

{% endif %}
{% endblock %}