<!doctype html><html lang="fr" data-bs-theme="auto"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1"><title>OKS-shop</title><meta name="description" content="La boutique spécialisée dans la fabrication Made In France"><link rel="stylesheet" href="{{ asset('assets/css/style.css') }}"><link href="{{ asset('assets/css/bootstrap.min.css') }}" rel="stylesheet"><!-- Custom styles for this template --><link href="{{ asset('assets/css/carousel.css')}}" rel="stylesheet"><link href="{{ asset('assets/css/costum.css')}}" rel="stylesheet"><script src="https://unpkg.com/feather-icons"></script></head><body><header data-bs-theme="dark"><nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark"><div class="container-fluid"><a class="navbar-brand" href="{{ path('app_home')}}">OKS-shop</a><button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button><div class="collapse navbar-collapse" id="navbarCollapse"><ul class="navbar-nav me-auto mb-2 mb-md-0"><li class="nav-item"><a class="nav-link active" aria-current="page" href="{{ path('app_home')}}">Accueil</a></li>{% for category in allCategories%}<li class="nav-item"><a class="nav-link" href="{{ path('app_category', { slug: category.slug }) }}">{{category.name}}</a></li>{%endfor%}</ul><div class="speed-menu">{% if app.user %}<a href="{{ path('app_account')}}"><i data-feather="user"></i> {{ app.user.firstname}} </a><a href="{{ path('app_account_wishlist')}}"><i data-feather="heart"></i></a>{% else %}<a href="{{ path('app_login')}}"><i data-feather="user"></i></a>{% endif %}<a href="{{ path('app_cart')}}"><i data-feather="shopping-cart"></i><span class="badge text-bg-light"> {{ fullCartQuantity }} </span></a></div></div></div></nav></header><main><div class="container">{% for label, message in app.flashes %}{% for message in message %}<div class="alert mt-4 alert-{{ label }}">{{ message }}</div>{% endfor %}{% endfor %}</div>{% block body %} {% endblock %}<!-- FOOTER --><footer class="container"><p>© 2025 OKS-shop <a href="#">CGV</a> · <a href="#">CGU</a></p></footer></main><script src="{{ asset('assets/js/bootstrap.bundle.min.js') }}"></script><script src="{{ asset('assets/js/global.js') }}"></script></body></html>