{% extends 'base.html.twig' %} {% block title %}{% block page_title %}{{ system_name|default('YIMA-SHOP') }}{% endblock %} - {{ system_name|default('YIMA-SHOP') }}{% endblock %} {% block body %} {# Flash Messages Zone (affichée au-dessus de tout) #} {# data-turbo-temporary prevents flash messages from being cached by Turbo #}
{% include 'flowbite_components/layout/_notifications_zone.html.twig' %}
{# Header / Navbar #} {% include 'flowbite_components/layout/_header.html.twig' with { appName: system_name|default('YIMA-SHOP'), appLogo: asset('logo.png'), userName: app.user ? (app.user.firstName ~ ' ' ~ app.user.lastName)|trim : 'Utilisateur', userEmail: app.user ? app.user.email : '', userPhoto: app.user ? app.user.profilePhoto|profile_picture_url : asset('images/default-avatar.png'), notificationCount: 0 } %} {# Sidebar #} {% include 'flowbite_components/layout/_sidebar.html.twig' with { appName: system_name|default('YIMA-SHOP'), appLogo: asset('logo.png') } %} {# Main Content Area #}
{# Page Header (optionnel) #} {% block page_header %} {% if block('page_title') is defined %}

{% block page_icon %}{% endblock %} {{ block('page_title') }}

{% block page_description %}{% endblock %}
{% endif %} {% endblock %} {# Main Content - Block unifié pour tous les rôles #} {% block main_content %} {% block content %} {# Contenu principal de la page #} {% endblock %} {% endblock %}
{# Floating Action Buttons (overridden by child templates) #} {% block floating_actions %}{% endblock %} {# Scroll to Top Button #} {% include 'flowbite_components/layout/_scroll_to_top.html.twig' %} {% endblock %}