templates/base.html.twig line 1
<!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>BuyAndSelam - 100% Made in Africa</title>
<meta name="description" content="La boutique spécialisée dans la fabrication Made In World">
<link href="https://cdn.jsdelivr.net/npm/remixicon@3.2.0/fonts/remixicon.css" rel="stylesheet">
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css"
/>
<link rel="stylesheet" href="{{ asset('assets/css/styles.css') }}">
<link rel='stylesheet' href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.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/custom.css') }}" rel="stylesheet">
<!-- favicon pour avoir une photo perso dans le header du nav-->
<link rel="icon" href="https://img.kwcdn.com/product/fancy/6870913f-03b8-4053-80d4-997bdef72eff.jpg?imageView2/2/w/800/q/70" type="image/gif" sizes="16x16">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.9.0/slick.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.9.0/slick-theme.min.css">
<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') }}">BuyAndSalam</a>
<nav class="dropdownmenu">
<ul>
<li><a href="{{ path('app_home') }}">Home</a></li>
<li><a href="#">Produits 100% africains</a>
<ul id="submenu">
<li><a href="https://www.google.com/search?client=firefox-b-d&sca_esv=323b9f97f7d38a56&sxsrf=ADLYWIJlt7g4pkGqADcz9tVAQ-6kc3BqEw:1716017998058&q=mode+afrique+de+l%27ouest&uds=ADvngMipajioxIlpJYA27QdZAqwgG1miVjJvV2LnlXuvD42r3D4e1UNLSC859yCKR3SorR-aemjwdSsKv6boRaAtpRBZp-N0qPTP2R4fNlGjadBnFVmcacF067jufRvELnfUEbLIojFkfC9WXyDInNdso5dWgPI1jUJX3vXESBHEc0Whin_Ihd1taprdjsLqVIdE4Nsnttjwadq7UsMlfSRsdRT029plk3UhsmHF-shs4akGa9ERtfo-scBXweDDzJh9qWGTJmGXuZv9loeR5sOooHLjwH9FX7HjVwYuBkOk9ODAD7NrpaA&udm=2&prmd=ivnbz&sa=X&ved=2ahUKEwj_886Z2ZaGAxUWcKQEHVaAAdoQtKgLegQIDRAB&biw=1920&bih=955&dpr=1">Afrique de l'Ouest</a></li>
<li><a href="">Afrique du Sud</a></li>
<li><a href="">Afrique de l'Est</a></li>
</ul>
</li>
<li><a href="">Tous les Produits</a>
<ul id="submenu">
<li>
<ol class="list-unstyled">
{% for category in allCategories %}
<li>
<a class="nav-link" href="{{ path('app_category', { slug : category.slug } ) }}">{{ category.name }}</a>
</li>
{% endfor %}
</ol>
</li>
</ul>
</li>
<li><a href="">News</a>
</li>
</ul>
</nav>
<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">
</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 class="bg-light" 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>
<div class="container">
{% for label, messages in app.flashes %}
{% for message in messages %}
<div class="alert mt-4 alert-{{ label }}">
{{ message }}
</div>
{% endfor %}
{% endfor %}
</div>
{% block body %}{% endblock %}
<!-- menu bottom -->
<script src="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="{{ asset('assets/js/bootstrap.bundle.min.js') }}"></script>
<script src="{{ asset('assets/js/global.js') }}"></script>
</body>
</html>