templates/backfront.html.twig line 1

Open in your IDE?
  1. <!doctype html>
  2. <html class="no-js" lang="en">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="x-ua-compatible" content="ie=edge">
  6.     <title>{% block title %}SIP Academy - Formation en Développement Web et Certifications IT{% endblock %}</title>
  7.     <meta name="description" content="{% block meta_description %}Découvrez SIP Academy, votre centre de formation en Tunisie, spécialisé dans les formations en développement web et certifications IT{% endblock %}">
  8.     <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0">
  9.     <!-- favicon
  10.     ============================================ -->
  11.     <link rel="shortcut icon" type="image/x-icon" href="{{ asset('uploads/apropos/' ~ setting.favicon ) }}">
  12.     <!-- Bootstrap CSS
  13.     ============================================ -->
  14.     <link rel="stylesheet" href="{{ asset('asssets2/css/bootstrap.min.css') }}">
  15.     <!-- Fontawsome CSS
  16.     ============================================ -->
  17.     <link rel="stylesheet" href="{{ asset('asssets2/css/font-awesome.min.css') }}">
  18.     <!-- Metarial Iconic Font CSS
  19.     ============================================ -->
  20.     <link rel="stylesheet" href="{{ asset('asssets2/css/material-design-iconic-font.min.css') }}">
  21.     <!-- Plugin CSS
  22.     ============================================ -->
  23.     <link rel="stylesheet" href="{{ asset('asssets2/css/plugin.css') }}">
  24.     <!-- Style CSS
  25.     ============================================ -->
  26.     <link rel="stylesheet" href="{{ asset('style.css')}}">
  27.     <!-- Responsive CSS
  28.     ============================================ -->
  29.     <link rel="stylesheet" href="{{ asset('asssets2/css/responsive.css') }}">
  30.     <style>
  31.         a {
  32.             pointer-events: auto !important;
  33.             z-index: 9999 !important;
  34.         }
  35.         @media (max-width: 768px) {
  36.             .about-lectures {
  37.                 width: 100%; /* Ajustez la largeur selon vos besoins */
  38.                 /* Autres styles CSS mobiles */
  39.             }
  40.             .about-lectures  img  {
  41.                 width: 100%; /* Pour que les images ne dépassent pas la largeur du conteneur */
  42.                 height: auto; /* Pour maintenir la proportion d'origine de l'image */
  43.             }
  44.         }
  45.         @media screen and (max-width: 768px) {
  46.             .g-recaptcha {
  47.                 transform: scale(0.77);
  48.                 -webkit-transform: scale(0.77);
  49.                 transform-origin: 0 0;
  50.                 -webkit-transform-origin: 0 0;
  51.             }
  52.         }
  53.         /* Style pour la section Checkout */
  54.         .checkout-area {
  55.             padding-top: 100px;
  56.             padding-bottom: 70px;
  57.             background-color: #f7f7f7;
  58.         }
  59.         /* Style pour la boîte contenant chaque offre */
  60.         .checkout-area .your-order {
  61.             background-color: #ffffff;
  62.             padding: 30px;
  63.             border-radius: 5px;
  64.             box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  65.         }
  66.         /* Style pour le titre de chaque offre */
  67.         .checkout-area .your-order h3 {
  68.             font-size: 24px;
  69.             margin-bottom: 20px;
  70.             text-transform: uppercase;
  71.             color: #333333;
  72.         }
  73.         /* Style pour la table contenant les options de chaque offre */
  74.         .checkout-area .your-order .your-order-table {
  75.             margin-top: 20px;
  76.         }
  77.         /* Style pour la table des options de chaque offre */
  78.         .checkout-area .your-order table {
  79.             width: 100%;
  80.             border-collapse: collapse;
  81.         }
  82.         .checkout-area .your-order table th {
  83.             font-weight: 600;
  84.             text-align: left;
  85.             padding: 10px 0;
  86.             color: #333333;
  87.             border-bottom: 1px solid #f2f2f2;
  88.         }
  89.         .checkout-area .your-order table td {
  90.             font-weight: 400;
  91.             text-align: left;
  92.             padding: 10px 0;
  93.             color: #666666;
  94.             border-bottom: 1px solid #f2f2f2;
  95.         }
  96.         /* Style pour la ligne de total */
  97.         .checkout-area .your-order table tfoot .order-total th {
  98.             font-weight: 600;
  99.             padding-top: 20px;
  100.             text-align: right;
  101.             color: #333333;
  102.         }
  103.         /* Style pour la ligne de durée */
  104.         .checkout-area .your-order table tfoot .cart-subtotal th {
  105.             border-top: 2px solid #f2f2f2;
  106.             font-weight: 400;
  107.             padding-top: 10px;
  108.             text-align: right;
  109.             color: #666666;
  110.         }
  111.         /* Style pour la ligne de date d'expiration */
  112.         .checkout-area .your-order table tfoot .order-total:last-child th {
  113.             font-weight: 400;
  114.             padding-top: 10px;
  115.             text-align: right;
  116.             color: #666666;
  117.         }
  118.         /* Style pour les liens dans les tables */
  119.         .checkout-area .your-order table a {
  120.             color: #333333;
  121.             text-decoration: none;
  122.         }
  123.         .checkout-area .your-order table a:hover {
  124.             color: #000000;
  125.             text-decoration: underline;
  126.         }
  127.         /* Style pour les colonnes sur mobile */
  128.         @media (max-width: 767px) {
  129.             .checkout-area .your-order table td:first-child,
  130.             .checkout-area .your-order table th:first-child {
  131.                 display: none;
  132.             }
  133.             .checkout-area .your-order table td:nth-child(2),
  134.             .checkout-area .your-order table th:nth-child(2) {
  135.                 font-weight: 600;
  136.             }
  137.         }
  138.     </style>
  139.     <script src="https://www.google.com/recaptcha/api.js" async defer></script>
  140. </head>
  141. <body>
  142. <!--[if lt IE 8]>
  143. <p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
  144. <![endif]-->
  145. <!--Loading Area Start-->
  146. <!--Loading Area Start-->
  147. {#<div class="loading">#}
  148. {#    <div class="text-center middle">#}
  149. {#        <div class="lds-ellipsis"><div></div><div></div><div></div><div></div></div>#}
  150. {#    </div>#}
  151. {#</div>#}
  152. <!--Loading Area End-->
  153. <!--Loading Area End-->
  154. <!--Main Wrapper Start-->
  155. <div class="as-mainwrapper">
  156.     <!--Bg White Start-->
  157.     <div class="bg-white">
  158.         <!--Header Area Start-->
  159.         <header>
  160.             <div class="header-top">
  161.                 <div class="container">
  162.                     <div class="row">
  163.                         <div class="col-lg-6  col-12">
  164.                             <span>Vous avez une question? nous contacter sur  : {{ setting.contact}} </span>
  165.                         </div>
  166.                         <div class="col-lg-6  col-12">
  167.                             <div class="header-top-right">
  168.                                 <span><i class="fa fa-phone"></i> Téléphone : {{ setting.numero}} </span>
  169.                                 <span> <i class="fa fa-whatsapp"></i> WhatsApp : {{ setting.whatsapp}}</span>
  170.                             </div>
  171.                         </div>
  172.                     </div>
  173.                 </div>
  174.             </div>
  175.             {% block mm %}
  176.                 <div class="header-logo-menu sticker">
  177.                     <div class="container">
  178.                         <div class="row">
  179.                             <div class="col-lg-3 col-12">
  180.                                 <div class="logo" >
  181.                                     <a href="{{ path('app_home') }}"><img style="margin-left: -60px" src="{{ asset('uploads/icon/' ~ setting.icon ) }}" alt="EDUCAT"></a>
  182.                                 </div>
  183.                             </div>
  184.                             <div class="col-lg-9 col-12">
  185.                                 <div class="mainmenu-area pull-right">
  186.                                     <div class="mainmenu d-none d-lg-block">
  187.                                         <nav style="margin-left: -150px;">
  188.                                             <ul id="nav">
  189.                                                 <li class="current"><a href="{{ path('app_home') }}">Accueil</a>
  190.                                                 </li>
  191.                                                 <li><a href="{{ path('app_about') }}">A propos </a></li>
  192.                                                 <li>
  193.                                                     <a href="{{ path('app_formation_elearning_front') }}">Elearning</a>
  194.                                                     <ul class="sub-menu">
  195.                                                         {% for cat in categories %}
  196.                                                             <li><a href="{{ path('app_formation_elearning_front', {'slug': cat.slug}) }}">{{ cat.libelle }}</a></li>
  197.                                                         {% endfor %}
  198.                                                         <li><a href="{{ path('app_pack_elearning_front') }}">Pack </a></li>
  199.                                                     </ul>
  200.                                                 </li>
  201.                                                 <li><a href="{{ path('app_formations') }}">Formations</a>
  202.                                                     <ul class="sub-menu">
  203.                                                         <li><a href="{{ path('app_formations_certifiantes') }}">Certifiantes </a></li>
  204.                                                         <li><a href="{{ path('app_formations_pratique') }}">Pratiques</a></li>
  205.                                                         <li><a href="{{ path('app_formations_bootcamp') }}">Bootcamp</a></li>
  206.                                                         <li><a href="{{ path('app_formations_cursus') }}">Cursus</a></li>
  207.                                                     </ul>
  208.                                                 </li>
  209.                                                 <li><a href="{{ path('app_home_session') }}">Sessions</a>
  210.                                                 <li><a href="{{ path('app_partenaires') }}">Partenaires</a>
  211.                                                 </li>
  212.                                                 <li><a href="{{ path('app_offres') }}">Offres</a>
  213.                                                 </li>
  214.                                                 <li><a href="{{ path('app_galleries_front') }}">Galerie</a>
  215.                                                 </li>
  216.                                                 <li><a href="{{ path('app_contact_contact') }}">Contact</a></li>
  217.                                                 {% if  app.user %}
  218.                                                 {% if 'ROLE_STUDENT' in app.user.roles %}
  219.                                                     <li><a href="{{ path('dashboard_stagiaire') }}">Dashboard</a></li>
  220.                                                 {% else  %}
  221.                                                     <li><a href="{{ path('app_admin') }}">Dashboard</a></li>
  222.                                                 {% endif %}
  223.                                                 {% else %}
  224. {#                                                    <li><a href="{{ path('app_register') }}">S'inscrire</a></li>#}
  225.                                                     <li><a href="{{ path('app_login') }}">Connexion</a></li>
  226.                                                 {% endif %}
  227.                                                 </li>
  228.                                             </ul>
  229.                                         </nav>
  230.                                     </div>
  231.                                                                     <ul class="header-search">
  232.                                                                         <li class="search-menu" style="position: relative;">
  233.                                                                             <a href="{{ path('panier_voir') }}" style="display:inline-block;">
  234.                                                                                 <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 1024 1024">
  235.                                                                                     <path fill="#000" d="M1015.66 284a31.82 31.82 0 0 0-3.89-29.024c-5.94-8.432-15.39-15.04-26.02-15.04H310.97L264.83 110.61C244.17 40.386 196.32 34.33 176.53 34.33H34.33a31.78 31.78 0 1 0 0 63.56h137.05c4.34 0 17.57 0 26.6 31.18l176.84 649.94c3.5 12.85 15.6 23.18 30.59 23.18h431.97c13.41 0 25.37-8.4 29.9-21.03l152.25-449.68a31.75 31.75 0 0 0-3.89-29.02zM815.03 720.19H429.54L328.39 334.07h616.1zM752 848.13c-44.19 0-80 35.81-80 80s35.81 80 80 80 80-35.81 80-80-35.81-80-80-80zm-288 0c-44.19 0-80 35.81-80 80s35.81 80 80 80 80-35.81 80-80-35.81-80-80-80"/>
  236.                                                                                 </svg>
  237.                                                                                 <span id="cart-count" style="
  238.             position: absolute;
  239.             top: -5px;
  240.             right: -8px;
  241.             background-color: #ffa600;
  242.             color: white;
  243.             border-radius: 50%;
  244.             padding: 2px 6px;
  245.             font-size: 10px;">
  246.             {{ totalPanier|default(0) }}
  247.         </span>
  248.                                                                             </a>
  249.                                                                         </li>
  250.                                                                     </ul>
  251.                                                                     <!--Search Form-->
  252. {#                                                                    <div class="search">#}
  253. {#                                                                        <div class="search-form">#}
  254. {#                                                                            <form id="search-form" action="#">#}
  255. {#                                                                                <input type="search" placeholder="Search here..." name="search" />#}
  256. {#                                                                                <button type="submit">#}
  257. {#                                                                                    <span><i class="fa fa-search"></i></span>#}
  258. {#                                                                                </button>#}
  259. {#                                                                            </form>#}
  260. {#                                                                        </div>#}
  261. {#                                                                    </div>#}
  262.                                     <!--End of Search Form-->
  263.                                 </div>
  264.                             </div>
  265.                         </div>
  266.                     </div>
  267.                 </div>
  268.                 <!-- Mobile Menu Area start -->
  269.                 <div class="mobile-menu-area">
  270.                     <div class="container clearfix">
  271.                         <div class="row">
  272.                             <div class="col-lg-12 col-md-12 col-sm-12">
  273.                                 <div class="mobile-menu">
  274.                                     <nav id="dropdown">
  275.                                         <ul>
  276.                                             <li><a href="{{ path('app_home') }}">Accueil</a></li>
  277.                                             <li><a href="{{ path('app_about') }}">A propos</a></li>
  278.                                             <li><a href="{{ path('app_formations') }}">Formations</a></li>
  279.                                             <li><a href="{{ path('app_home_session') }}">Sessions</a>
  280.                                             <li><a href="{{ path('app_partenaires') }}">Partenaires</a></li>
  281.                                             <li><a href="{{ path('app_offres') }}">Offres</a>
  282.                                             </li>
  283.                                             <li><a href="{{ path('app_galleries_front') }}">Galerie</a></li>
  284.                                             <li><a href="{{ path('app_contact_contact') }}">Contact</a></li>
  285.                                             <li><a href="{{ path('app_register') }}">Crée Compte</a></li>
  286.                                             {% if  app.user %}
  287.                                             <li><a href="{{ path('app_admin') }}">Dashboard</a>
  288.                                                 {% else %}
  289.                                             <li><a href="{{ path('app_login') }}">Connexion</a>
  290.                                                 {% endif %}
  291.                                         </ul>
  292.                                         {#         <ul>
  293.                                         <li><a href="index.html">HOME</a>
  294.                                             <ul>
  295.                                                 <li><a href="index.html">Home Version 1</a></li>
  296.                                                 <li><a href="index-2.html">Home Version 1</a></li>
  297.                                             </ul>
  298.                                         </li>
  299.                                         <li><a href="gallery.html">Gallery</a>
  300.                                             <ul>
  301.                                                 <li><a href="gallery.html">Gallery</a></li>
  302.                                                 <li><a href="gallery-2.html">Gallery Filtaring</a></li>
  303.                                                 <li><a href="gallery-four-column.html">Gallery Four Column</a></li>
  304.                                             </ul>
  305.                                         </li>
  306.                                         <li><a href="team-details.html">Team Details</a></li>
  307.                                         <li><a href="course.html">Courses</a>
  308.                                             <ul class="sub-menu">
  309.                                                 <li><a href="courses-details.html">Courses Details</a></li>
  310.                                             </ul>
  311.                                         </li>
  312.                                         <li><a href="shop.html">Shop</a>
  313.                                             <ul class="sub-menu">
  314.                                                 <li><a href="single-product.html">Single Product</a></li>
  315.                                             </ul>
  316.                                         </li>
  317.                                         <li><a href="event.html">Event</a>
  318.                                             <ul class="sub-menu">
  319.                                                 <li><a href="event-details.html">Event Details</a></li>
  320.                                             </ul>
  321.                                         </li>
  322.                                         <li><a href="blog.html">Blog</a>
  323.                                             <ul class="sub-menu">
  324.                                                 <li><a href="blog-details.html">Blog Details</a></li>
  325.                                                 <li><a href="blog-left-sidebar.html">Blog Left Sidebar</a></li>
  326.                                                 <li><a href="blog-no-sidebar.html">Blog No Sidebar</a></li>
  327.                                             </ul>
  328.                                         </li>
  329.                                         <li><a href="contact.html">Pages</a>
  330.                                             <ul>
  331.                                                 <li><a href="team-details.html">Team Details</a></li>
  332.                                                 <li><a href="course.html">Courses Page</a></li>
  333.                                                 <li><a href="courses-details.html">Course Details Page</a></li>
  334.                                                 <li><a href="event.html">Event Page</a></li>
  335.                                                 <li><a href="event-details.html">Event Details Page</a></li>
  336.                                                 <li><a href="blog.html">Blog</a></li>
  337.                                                 <li><a href="blog-details.html">Blog Details Page</a></li>
  338.                                                 <li><a href="blog-left-sidebar.html">Blog Left Sidebar</a></li>
  339.                                                 <li><a href="blog-no-sidebar.html">Blog No Sidebar</a></li>
  340.                                                 <li><a href="wishlist.html">Wishlist Page</a></li>
  341.                                                 <li><a href="checkout.html">Checkout Page</a></li>
  342.                                                 <li><a href="cart.html">Shopping Cart Page</a></li>
  343.                                                 <li><a href="login-register.html">Login Page</a></li>
  344.                                                 <li><a href="contact.html">Contact</a></li>
  345.                                                 <li><a href="404.html">404 Error</a></li>
  346.                                             </ul>
  347.                                         </li>
  348.                                         <li><a href="contact.html">Contact us</a></li>
  349.                                     </ul>#}
  350.                                     </nav>
  351.                                 </div>
  352.                             </div>
  353.                         </div>
  354.                     </div>
  355.                 </div>
  356.             {% endblock %}
  357.             <!-- Mobile Menu Area end -->
  358.         </header>
  359.         <!--End of Header Area-->
  360.         <!--Slider Area Start-->
  361.         {% block body %}
  362.             <div class="slider-area">
  363.                 <div class="hero-slider owl-carousel">
  364.                     <!--Single Slider Start-->
  365.                     {% for ban in ban %}
  366.                         <div class="single-slider" style="background-image: url('{{asset('uploads/banniere/'~ ban.image  )}}')">
  367.                             <div class="hero-slider-content">
  368.                                 <h1> {{ ban.titre }}</h1>
  369.                                 <p>{{ ban.description }}</p>
  370.                                 <div class="slider-btn" style="-webkit-animation-name: fadeInUp;
  371.     animation-name: fadeInUp;
  372.     -webkit-animation-delay: 1200ms;
  373.     animation-delay: 1200ms;">
  374.                                     <a class="button-default" href="{{ ban.lienboutou }}" target="_blank">Voir plus</a>
  375.                                 </div>
  376.                             </div>
  377.                         </div>
  378.                         <!--Single Slider End-->
  379.                     {% endfor %}
  380.                     <!--Single Slider Start-->
  381.                     <!--Single Slider End-->
  382.                 </div>
  383.             </div>
  384.             <!--Slider Area End-->
  385.             <!--About Area Start-->
  386.             <div class="about-area mt-95">
  387.                 <div class="container">
  388.                     <div class="row">
  389.                         <div class="col-lg-7">
  390.                             <div class="about-container">
  391.                                 <h3>{{ setting.description1 }}</h3>
  392.                                 <p style="text-align: justify">{{ setting.description2}}</p>
  393.                                 <a class="button-default" href="{{ path('app_about') }}">plus de détails</a>
  394.                             </div>
  395.                         </div>
  396.                         <div class="col-lg-5">
  397.                             <!--About Image Area Start-->
  398.                             <div class="about-image-area img-full">
  399.                                 <img src="{{ asset('uploads/apropos/' ~ setting.imageapropos ) }}" alt="">
  400.                             </div>
  401.                             <!--About Image Area End-->
  402.                         </div>
  403.                     </div>
  404.                 </div>
  405.             </div>
  406.             <!--End of About Area-->
  407.             <!--Course Area Start-->
  408.             <div class="course-area section-padding">
  409.                 <div class="container">
  410.                     <div class="row">
  411.                         <div class="col-md-12">
  412.                             <div class="section-title-wrapper">
  413.                                 <div class="section-title">
  414.                                     <h3>Formations Populaires</h3>
  415.                                     <p>Consulter toutes nos formations populaires</p>
  416.                                 </div>
  417.                             </div>
  418.                         </div>
  419.                     </div>
  420.                     <div class="row">
  421.                         {% for fo in for %}
  422.                             <div class="col-lg-4 col-md-6 col-12">
  423.                                 <div class="single-item">
  424.                                     <div class="single-item-image overlay-effect">
  425.                                         <a href="{{ path('app_formation_detailsfront', {'slug': fo.slug}) }}"><img src="{{ asset('uploads/formation/' ~ fo.affiche ) }}" alt=""></a>
  426.                                         {% for f in formateur %}
  427.                                             {% if fo.formateur.id == f.id %}
  428.                                                 <div class="courses-hover-info">
  429.                                                     <div class="courses-hover-action">
  430.                                                         <div class="courses-hover-thumb">
  431.                                                             <img src="{{asset('uploads/coach/'~ f.logo  )}}" alt="small images" style="width: 40px;height: 40px">
  432.                                                         </div>
  433.                                                         <h4><a href="#">{{ f.prenom }} {{ f.nom }}</a></h4>
  434.                                                         <span class="crs-separator">/</span>
  435.                                                         <p>{{ f.poste}}</p>
  436.                                                     </div>
  437.                                                 </div>
  438.                                             {% endif %}
  439.                                         {% endfor %}
  440.                                     </div>
  441.                                     <div class="single-item-text">
  442.                                         <h4><a href="{{ path('app_formation_detailsfront', {'slug': fo.slug}) }}">{{ fo.titre }}</a></h4>
  443.                                         <p>{{ fo.desccourt|raw }}</p>
  444.                                         <div class="single-item-content">
  445.                                             <div class="single-item-rating">
  446.                                                 <i class="zmdi zmdi-star"></i>
  447.                                                 <i class="zmdi zmdi-star"></i>
  448.                                                 <i class="zmdi zmdi-star"></i>
  449.                                                 <i class="zmdi zmdi-star"></i>
  450.                                                 <i class="zmdi zmdi-star"></i>
  451.                                             </div>
  452.                                         </div>
  453.                                     </div>
  454.                                 </div>
  455.                             </div>
  456.                         {% endfor %}
  457.                         <div class="col-md-12 col-sm-12 text-center">
  458.                             <a href="{{ path('app_formations') }}" class="button-default button-large">Parcourir nos formations <i class="zmdi zmdi-chevron-right"></i></a>
  459.                         </div>
  460.                     </div>
  461.                 </div>
  462.             </div>
  463.             <!--End of Course Area-->
  464.             <!--Fun Factor Area Start-->
  465.             <div class="fun-factor-area" style="background-color: #dae3ff">
  466.                 <div class="container">
  467.                     <div class="row">
  468.                         <div class="col-lg-3 col-md-6 col-12">
  469.                             <div class="single-fun-factor mb-30">
  470.                                 <h2><span class="">{{ setting.membres }}</span>+</h2>
  471.                                 <h4>Membres</h4>
  472.                             </div>
  473.                         </div>
  474.                         <div class="col-lg-3 col-md-6 col-12">
  475.                             <div class="single-fun-factor mb-30">
  476.                                 <h2><span class="">{{ setting.nbrformation }}</span>+</h2>
  477.                                 <h4>Formations</h4>
  478.                             </div>
  479.                         </div>
  480.                         <div class="col-lg-3 col-md-6 col-12">
  481.                             <div class="single-fun-factor mb-30">
  482.                                 <h2><span class="">{{ setting.formateurs }}</span>+</h2>
  483.                                 <h4>Formateurs</h4>
  484.                             </div>
  485.                         </div>
  486.                         <div class="col-lg-3 col-md-6 col-12">
  487.                             <div class="single-fun-factor mb-30">
  488.                                 <h2><span class="">{{ setting.pays }}</span>+</h2>
  489.                                 <h4>Pays</h4>
  490.                             </div>
  491.                         </div>
  492.                     </div>
  493.                 </div>
  494.             </div>
  495.             <!--End of Fun Factor Area-->
  496.             <!--Latest News Area Start-->
  497.             {#<div class="latest-area section-padding bg-white">
  498.             <div class="container">
  499.                 <div class="row">
  500.                     <div class="col-md-12">
  501.                         <div class="section-title-wrapper">
  502.                             <div class="section-title">
  503.                                 <h3>Latest News</h3>
  504.                                 <p>There are many variations of passages</p>
  505.                             </div>
  506.                         </div>
  507.                     </div>
  508.                 </div>
  509.                 <div class="row">
  510.                     <div class="col-lg-4 col-md-6 col-12">
  511.                         <div class="single-latest-item">
  512.                             <div class="single-latest-image">
  513.                                 <a href="blog-details.html"><img src="img/latest/1.jpg" alt=""></a>
  514.                             </div>
  515.                             <div class="single-latest-text">
  516.                                 <h3><a href="blog-details.html">Learn English in ease</a></h3>
  517.                                 <div class="single-item-comment-view">
  518.                                     <span><i class="zmdi zmdi-calendar-check"></i>25 jun 2050</span>
  519.                                     <span><i class="zmdi zmdi-eye"></i>59</span>
  520.                                     <span><i class="zmdi zmdi-comments"></i>19</span>
  521.                                 </div>
  522.                                 <p>There are many variaons of passages of Lorem Ipsuable, amrn in some by injected humour, </p>
  523.                                 <a href="blog-details.html" class="button-default">Read More</a>
  524.                             </div>
  525.                         </div>
  526.                     </div>
  527.                     <div class="col-lg-4 col-md-6 col-12">
  528.                         <div class="single-latest-item">
  529.                             <div class="single-latest-image">
  530.                                 <a href="blog-details.html"><img src="img/latest/2.jpg" alt=""></a>
  531.                             </div>
  532.                             <div class="single-latest-text">
  533.                                 <h3><a href="blog-details.html">Learn English in ease</a></h3>
  534.                                 <div class="single-item-comment-view">
  535.                                     <span><i class="zmdi zmdi-calendar-check"></i>25 jun 2050</span>
  536.                                     <span><i class="zmdi zmdi-eye"></i>59</span>
  537.                                     <span><i class="zmdi zmdi-comments"></i>19</span>
  538.                                 </div>
  539.                                 <p>There are many variaons of passages of Lorem Ipsuable, amrn in some by injected humour, </p>
  540.                                 <a href="blog-details.html" class="button-default">Read More</a>
  541.                             </div>
  542.                         </div>
  543.                     </div>
  544.                     <div class="col-lg-4 col-md-6 col-12">
  545.                         <div class="single-latest-item">
  546.                             <div class="single-latest-image">
  547.                                 <a href="blog-details.html"><img src="img/latest/4.jpg" alt=""></a>
  548.                             </div>
  549.                             <div class="single-latest-text">
  550.                                 <h3><a href="blog-details.html">Learn English in ease</a></h3>
  551.                                 <div class="single-item-comment-view">
  552.                                     <span><i class="zmdi zmdi-calendar-check"></i>25 jun 2050</span>
  553.                                     <span><i class="zmdi zmdi-eye"></i>59</span>
  554.                                     <span><i class="zmdi zmdi-comments"></i>19</span>
  555.                                 </div>
  556.                                 <p>There are many variaons of passages of Lorem Ipsuable, amrn in some by injected humour, </p>
  557.                                 <a href="blog-details.html" class="button-default">Read More</a>
  558.                             </div>
  559.                         </div>
  560.                     </div>
  561.                 </div>
  562.             </div>
  563.         </div>#}
  564.             <!--End of Latest News Area-->
  565.             <!--Online Product Area Start-->
  566.             <br>
  567.             <div class="event-area section-padding bg-white">
  568.                 <div class="container">
  569.                     <div class="row">
  570.                         <div class="col-md-12">
  571.                             <div class="section-title-wrapper">
  572.                                 <div class="section-title">
  573.                                     <h3>Prochaines Sessions</h3>
  574.                                     {#                                    <p>There are many variations of passages</p>#}
  575.                                 </div>
  576.                             </div>
  577.                         </div>
  578.                     </div>
  579.                     <div class="row">
  580.                         {% for evenement in evenements %}
  581.                             <div class="col-lg-4 col-md-6">
  582.                                 <div class="single-event-item">
  583.                                     <div class="single-event-image">
  584.                                         <a href="{{ path('app_details_session',{'slug':evenement.slug}) }}">
  585.                                             {#                                        <img src="{{asset('uploads/evenement/'~ evenement.image  )}}" alt="">#}
  586.                                             {% if evenement.image %}
  587.                                                 <img src="{{asset('uploads/evenement/'~ evenement.image  )}}" alt="">
  588.                                             {% elseif evenement.formation %}
  589.                                                 <img src="{{asset('uploads/formation/'~ evenement.formation.affiche  )}}"   alt="">
  590.                                             {% else %}
  591.                                             {% endif %}
  592.                                             <span>{{ evenement.starttime |date('d M') }}</span>
  593.                                         </a>
  594.                                     </div>
  595.                                     <div class="single-event-text">
  596.                                         <h3><a href="{{ path('app_details_session',{'slug':evenement.slug}) }}">{{ evenement.titre }}</a></h3>
  597.                                         <div class="single-item-comment-view">
  598.                                             <span><i class="zmdi zmdi-time"></i>{{ evenement.starttime |date('d-m H:i') }}- {{ evenement.endtime |date('d-m H:i') }}</span>
  599.                                             <span><i class="zmdi zmdi-pin"></i>{{ evenement.adresse }}</span>
  600.                                         </div>
  601.                                         <p>{{ evenement.descriptionshort|raw}}</p>
  602.                                         <a class="button-default" href="{{ path('app_details_session',{'slug':evenement.slug}) }}">Détails</a>
  603.                                     </div>
  604.                                 </div>
  605.                             </div>
  606.                         {% endfor %}
  607.                     </div>
  608.                 </div>
  609.             </div>
  610.             <div class="product-area section-bottom-padding bg-white">
  611.                 <div class="container">
  612.                     <div class="row">
  613.                         <div class="col-md-12">
  614.                             <div class="section-title-wrapper">
  615.                                 <div class="section-title">
  616.                                     <h3>Dérnieres Vidéos</h3>
  617.                                     <a href="{{ setting.lienyoutube }}">Consulter Notre Page Youtube</a>
  618.                                 </div>
  619.                             </div>
  620.                         </div>
  621.                     </div>
  622.                     <div class="row">
  623.                         {% for v in video %}
  624.                             <div class="col-lg-3 col-md-6">
  625.                                 <!--Single Product Start-->
  626.                                 <div class="single-product mb-30">
  627.                                     <div class="product-img img-full">
  628.                                         <a href="" tabindex="0">
  629.                                             <video controls width="250" height="270">  <source src="{{ asset('uploads/video/' ~ v.videov ) }}"></video>
  630.                                         </a>
  631.                                     </div>
  632.                                     <div class="product-content">
  633.                                         <h2><a href="" tabindex="0">{{ v.titre }}</a></h2>
  634.                                         {#                                        <div class="product-price">#}
  635.                                         {#                                            <div class="price-box">#}
  636.                                         {#                                                <span class="regular-price"></span>#}
  637.                                         {#                                            </div>#}
  638.                                         {#                                            <div class="add-to-cart">#}
  639.                                         {#                                                <a href="#" tabindex="0">{{ v.titre }}</a>#}
  640.                                         {#                                            </div>#}
  641.                                         {#                                        </div>#}
  642.                                     </div>
  643.                                 </div>
  644.                                 <!--Single Product Start-->
  645.                             </div>
  646.                         {% endfor %}
  647.                     </div>
  648.                 </div>
  649.             </div>
  650.             <!--End of Online Product Area-->
  651.             <!--Testimonial Area Start-->
  652.             <div class="testimonial-area">
  653.                 <div class="container">
  654.                     <div class="row">
  655.                         <div class="testimonial-slider-2 owl-carousel">
  656.                             {% for temoii in temoi %}
  657.                                 <div class="col-12">
  658.                                     <div class="single-testimonial testimonial-style-2">
  659.                                         <div class="des-testimonial">
  660.                                             {{ temoii.description }}                                </div>
  661.                                         <div class="testimonial-author">
  662.                                             <div class="author-img">
  663.                                                 <img src="{{ asset('uploads/temoignage/' ~ temoii.image ) }}" alt="" style="width: 100%;height: 100%" >
  664.                                             </div>
  665.                                             <div class="author-content">
  666.                                                 <h5>{{ temoii.prenom }} {{ temoii.nom }} &nbsp; </h5>
  667.                                                 <p>{{ temoii.poste }}</p>
  668.                                             </div>
  669.                                         </div>
  670.                                     </div>
  671.                                 </div>
  672.                             {% endfor %}
  673.                         </div>
  674.                     </div>
  675.                 </div>
  676.             </div>
  677.             <!--Testimonial Area End-->
  678.             <!--Testimonial Area End-->
  679.             <!--Event Area Start-->
  680.             <!--Latest News Area Start-->
  681.             <div class="latest-area section-padding bg-white">
  682.                 <div class="container">
  683.                     <div class="row">
  684.                         <div class="col-md-12">
  685.                             <div class="section-title-wrapper">
  686.                                 <div class="section-title">
  687.                                     <div  id="actualites"></div>
  688.                                     <h3>Dernières Actualités</h3>
  689.                                     {#                                    <p>There are many variations of passages</p>#}
  690.                                 </div>
  691.                             </div>
  692.                         </div>
  693.                     </div>
  694.                     <div class="row">
  695.                         {% for actualite in actualites %}
  696.                             <div class="col-lg-4 col-md-6 col-12">
  697.                                 <div class="single-latest-item">
  698.                                     <div class="single-latest-image">
  699.                                         <a href="{{ path('app_details_actualite',{'slug':actualite.slug}) }}"><img src="{{asset('uploads/actualite/'~ actualite.image  )}}" alt=""></a>
  700.                                     </div>
  701.                                     <div class="single-latest-text">
  702.                                         <h3><a href="{{ path('app_details_actualite',{'slug':actualite.slug}) }}">{{ actualite.titre }}</a></h3>
  703.                                         <div class="single-item-comment-view">
  704.                                             <span><i class="zmdi zmdi-calendar-check"></i>{{ actualite.date | date('d M Y') }}</span>
  705.                                             <span><i class="zmdi zmdi-eye"></i>{{ actualite.nbvue }}</span>
  706.                                             <span><i class="zmdi zmdi-comments"></i>{{ actualite.nbcommentaire }}</span>
  707.                                         </div>
  708.                                         {{ actualite.desccourt|raw }}
  709.                                         <a href="{{ path('app_details_actualite',{'slug':actualite.slug}) }}" class="button-default">Lire la suite</a>
  710.                                     </div>
  711.                                 </div>
  712.                             </div>
  713.                         {% endfor %}
  714.                     </div>
  715.                 </div>
  716.             </div>
  717.             <!--End of Latest News Area-->
  718.             <!--offres-->
  719.             {# <div class="checkout-area pt-100 pb-70">
  720.                 <div class="container">
  721.                     <div class="row">
  722.                         {%  for offf in off  %}
  723.                         <div class="col-lg-4 col-12" >
  724.                             <div class="your-order">
  725.                                 <h3>OFFRE {{ offf.titre }}</h3>
  726.                                 <div class="your-order-table table-responsive">
  727.                                     <table class="table">
  728.                                         <thead>
  729.                                         <tr>
  730.                                             <th class="cart-product-name">{{ offf.option1 }}</th>
  731.                                         </tr>
  732.                                         <tr>
  733.                                             <th class="cart-product-name">{{ offf.option2 }}</th>
  734.                                         </tr>
  735.                                         <tr>
  736.                                             <th class="cart-product-name">{{ offf.option3 }}</th>
  737.                                         </tr>
  738.                                         <tr>
  739.                                             <th class="cart-product-name">{{ offf.option4 }}</th>
  740.                                         </tr>
  741.                                         <tr>
  742.                                             <th class="cart-product-name">{{ offf.option5 }}</th>
  743.                                         </tr>
  744.                                         </thead>
  745.                                         <tbody>
  746.                                         </tbody>
  747.                                         <tfoot>
  748.                                         <tr class="cart-subtotal">
  749.                                             <th>Durée:{{ offf.duree }}</th>
  750.                                         </tr>
  751.                                         <tr class="order-total">
  752.                                             <th>Prix:{{ offf.prix }}DT</th>
  753.                                         </tr>
  754.                                         <tr class="order-total">
  755.                                             <th>Date expiration:{{ offf.dateexp |date('d-m-Y ') }}</th>
  756.                                         </tr>
  757.                                         </tfoot>
  758.                                     </table>
  759.                                 </div>
  760.                             </div>
  761.                         </div>
  762. {% endfor %}
  763.                     </div>
  764.                 </div>
  765.             </div>#}
  766.             <div class="event-area section-padding bg-white">
  767.                 <div class="container">
  768.                     <div class="row">
  769.                         <div class="col-md-12">
  770.                             <div class="section-title-wrapper">
  771.                                 <div class="section-title">
  772.                                     <h3>NOS ABONNEMENTS</h3>
  773.                                     {#                                    <p>There are many variations of passages</p>#}
  774.                                 </div>
  775.                             </div>
  776.                         </div>
  777.                     </div>
  778.                     <div class="row">
  779.                         {% for evenement in off %}
  780.                             <div class="col-lg-4 col-md-6">
  781.                                 <div class="single-event-item">
  782.                                     <div class="single-event-image">
  783.                                         <a {#href="{{ path('app_details_session',{'slug':evenement.slug}) }}#}>
  784.                                             <img src="{{asset('uploads/affiche/'~ evenement.affiche  )}}" alt="">
  785.                                             <span>{{ evenement.titre }}
  786.                                             </span>
  787.                                         </a>
  788.                                     </div>
  789.                                     <div class="single-event-text">
  790.                                         <h3><a
  791.                                                     href="{{ path('app_details_offres',{'slug':evenement.slug}) }}">{{ evenement.prix }} DT</a></h3>
  792.                                         <div class="single-item-comment-view" style="text-align: justify;">
  793.                                             {% for tt in evenement.formation %}
  794.                                                 <span style="margin-right: 0px"><i class="fa fa-check" style="color: green"></i>Promo {{ tt.titre }}</span>
  795.                                                 <br>
  796.                                             {% endfor %}
  797.                                             <span style="margin-right: 0px"><i class="fa fa-check" style="color: green"></i> {{ evenement.option5 }}</span>
  798.                                         </div>
  799.                                         <p>{{ evenement.duree}}</p>
  800.                                         <a class="button-default"
  801.                                            href="{{ path('app_details_offres',{'slug':evenement.slug}) }}"
  802.                                         >Détails</a>
  803.                                     </div>
  804.                                 </div>
  805.                             </div>
  806.                         {% endfor %}
  807.                     </div>
  808.                 </div>
  809.             </div>
  810.             <!--End offres-->
  811.         {% endblock %}
  812.         <!--End of Event Area-->
  813.         <footer>
  814.             <!--Newsletter Area Start-->
  815.             <div class="newsletter-area">
  816.                 <div class="container">
  817.                     <div class="row">
  818.                         <div class="col-lg-5 col-md-5">
  819.                             <div class="newsletter-content">
  820.                                 <h3 style="font-size: 23px" >
  821.                                     S'ABONNER À NOTRE NEWSLETTER
  822.                                 </h3>
  823.                             </div>
  824.                         </div>
  825.                         <div class="col-lg-7 col-md-7">
  826.                             <div class="newsletter-form angle">
  827.                                 <form action="http://devitems.us11.list-manage.com/subscribe/post?u=6bbb9b6f5827bd842d9640c82&amp;id=05d85f18ef" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="mc-form footer-newsletter fix">
  828.                                     <div class="subscribe-form">
  829.                                         <input type="text " name="email" id="email" class="form-control" placeholder="Saisissez votre email" >
  830.                                         <button class="btn btn-theme" type="button" onclick="addNewsletter()"><i class="fa fa-paper-plane"></i></button>
  831.                                     </div>
  832.                                 </form>
  833.                                 <!-- mailchimp-alerts Start -->
  834.                                 <div class="mailchimp-alerts text-centre fix pull-right">
  835.                                     <div class="mailchimp-submitting"></div><!-- mailchimp-submitting end -->
  836.                                     <div class="mailchimp-success"></div><!-- mailchimp-success end -->
  837.                                     <div class="mailchimp-error"></div><!-- mailchimp-error end -->
  838.                                 </div>
  839.                                 <!-- mailchimp-alerts end -->
  840.                             </div>
  841.                         </div>
  842.                     </div>
  843.                 </div>
  844.             </div>
  845.             <!--End of Newsletter Area-->
  846.             <!--Footer Widget Area Start-->
  847.             <div class="footer-widget-area">
  848.                 <div class="container">
  849.                     <div class="row">
  850.                         <div class="col-lg-3 col-md-6">
  851.                             <div class="single-footer-widget">
  852.                                 <div class="footer-logo">
  853.                                     <a href="index.html"><img src="{{ asset('uploads/logo/' ~ setting.logofooter ) }}" alt=""></a>
  854.                                 </div>
  855.                                 <p style="text-align: justify">{{ setting.footer1}} </p>
  856.                                 <div class="social-icons">
  857.                                     <a href="{{ setting.lienfb }}"><i class="zmdi zmdi-facebook"></i></a>
  858.                                     <a href="{{ setting.lienlikedin }}"><i class="zmdi zmdi-linkedin"></i></a>
  859.                                     <a href="{{ setting.liengit }}"><i class="zmdi zmdi-github"></i></a>
  860.                                     <a href="{{ setting.lienyoutube }}"><i class="zmdi zmdi-youtube"></i></a>
  861.                                     <a href="{{ setting.lieninsta }}"><i class="zmdi zmdi-instagram"></i></a>
  862.                                 </div>
  863.                             </div>
  864.                         </div>
  865.                         <div class="col-lg-3 col-md-6">
  866.                             <div class="single-footer-widget">
  867.                                 <h3>Nous Contacter</h3>
  868.                                 <span><i class="fa fa-phone"></i>{{ setting.numero }}</span>
  869.                                 <span><i class="fa fa-whatsapp"></i>{{ setting.whatsapp }}</span>
  870.                                 <span><i class="fa fa-envelope"></i>{{ setting.contact }}</span>
  871.                                 {#                                <span><i class="fa fa-globe"></i>smart-it-partner.com</span>#}
  872.                                 <span><i class="fa fa-map"></i>{{ setting.adresse }}</span>
  873.                             </div>
  874.                         </div>
  875.                         <div class="col-lg-3 col-md-6">
  876.                             <div class="single-footer-widget">
  877.                                 <h3>Liens utiles</h3>
  878.                                 <ul class="footer-list">
  879.                                     <li><a href="{{ path('app_home') }}">Accueil</a></li>
  880.                                     <li><a href="{{ path('app_about') }}">A propos</a></li>
  881.                                     <li><a href="{{ path('app_formations') }}">Formations</a></li>
  882.                                     <li><a href="{{ path('app_partenaires') }}">Partenaires</a></li>
  883.                                     <li><a href="{{ path('app_contact_contact') }}">Contact</a></li>
  884.                                     <li><a href="{{ path('app_register') }}">Crée Compte</a></li>
  885.                                     <li><a href="{{ path('app_login') }}">Connexion</a></li>
  886.                                     <li><a href="{{ path('app_home_conditiongeneral') }}">Terms &amp; Conditions</a></li>
  887.                                 </ul>
  888.                             </div>
  889.                         </div>
  890.                         <div class="col-lg-3 col-md-6">
  891.                             <div class="single-footer-widget">
  892.                                 <h3>Maps</h3>
  893.                                 <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3190.6716507894507!2d10.189759375606597!3d36.89820257221939!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x12e2cb74d20b4e1d%3A0xcf369d3af5474b44!2sUniversit%C3%A9%20SESAME!5e0!3m2!1sfr!2stn!4v1680660777893!5m2!1sfr!2stn" width="320px" height="220px" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
  894.                             </div>
  895.                         </div>
  896.                     </div>
  897.                 </div>
  898.             </div>
  899.             <!--End of Footer Widget Area-->
  900.             <!--Footer Area Start-->
  901.             <div class="footer-area">
  902.                 <div class="container">
  903.                     <div class="row">
  904.                         <div class="col-lg-6 col-md-7 col-12">
  905.                             <span>Copyright &copy; SIP ACADEMY {{ "now" | date("Y") }}. All right reserved.Created by <a href="https://smart-it-partner.com/"  target="_blank">Smart IT Partner</a></span>
  906.                         </div>
  907.                         <div class="col-lg-6 col-md-5 col-12">
  908.                             <div class="column-right">
  909.                                 <span><a href="{{ path('app_home_conditiongeneral') }}" target="_blank">Terms &amp; Conditions</a></span>
  910.                             </div>
  911.                         </div>
  912.                     </div>
  913.                 </div>
  914.             </div>
  915.             <!--End of Footer Area-->
  916.         </footer>
  917.         <!--End of Main Wrapper Area-->
  918.         <!-- jquery
  919.         ============================================ -->
  920.         <script src="{{ asset('asssets2/js/vendor/modernizr-3.6.0.min.js') }}"></script>
  921.         <script src="{{ asset('asssets2/js/vendor/jquery-3.6.0.min.js') }}"></script>
  922.         <script src="{{ asset('asssets2/js/vendor/jquery-migrate-3.3.2.min.js') }}"></script>
  923.         <!-- popper JS
  924.         ============================================ -->
  925.         <script src="{{ asset('asssets2/js/popper.min.js') }}"></script>
  926.         <!-- bootstrap JS
  927.         ============================================ -->
  928.         <script src="{{ asset('asssets2/js/bootstrap.min.js') }}"></script>
  929.         <!-- AJax Mail JS
  930.         ============================================ -->
  931.         <script src="{{ asset('asssets2/js/ajax-mail.js') }}"></script>
  932.         <!-- plugins JS
  933.         ============================================ -->
  934.         <script src="{{ asset('asssets2/js/plugins.js') }}"></script>
  935.         <!-- main JS
  936.         ============================================ -->
  937.         <script src="{{ asset('asssets2/js/main.js') }}"></script>
  938.         <link href="//cdn.jsdelivr.net/npm/@sweetalert2/themes" rel="stylesheet">
  939.         <script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
  940.         <script>
  941.             function fireSweetAlert() {
  942.                 Swal.fire(
  943.                     {
  944.                         icon: 'success',
  945.                         title: 'Vous désormais inscrit au newsletters',
  946.                         showConfirmButton: false,
  947.                         timer: 2800
  948.                     }
  949.                 )
  950.             }
  951.         </script>
  952.         <script>
  953.             function fireSweetAlert2() {
  954.                 Swal.fire(
  955.                     {
  956.                         icon: 'success',
  957.                         title: 'Vous êtes déjà inscrit' ,
  958.                         showConfirmButton: false,
  959.                         timer: 2800
  960.                     }
  961.                 )
  962.             }
  963.         </script>
  964.         <script>
  965.             function fireSweetAlert3() {
  966.                 Swal.fire(
  967.                     {
  968.                         icon: 'success',
  969.                         title: 'Vous devez entrez votre email',
  970.                         showConfirmButton: false,
  971.                         timer: 2800
  972.                     }
  973.                 )
  974.             }
  975.         </script>
  976.         <script>
  977.             function addNewsletter(){
  978.                 console.log("ok new")
  979.                 var email=document.getElementById("email").value;
  980.                 if(email != ""){
  981.                     $.ajax({
  982.                         type: "POST",
  983.                         url: "{{ path('app_newsletter_new_ajax') }}",
  984.                         data:  {email:email  },
  985.                         success: function (data) {
  986.                             console.log( document.getElementById('messagesuccess'));
  987.                             if (data === 1){
  988.                                 fireSweetAlert();
  989.                                 console.log( data);
  990.                             }
  991.                             else  {
  992.                                 fireSweetAlert2()
  993.                                 console.log( data);
  994.                             }
  995.                         }
  996.                     })}
  997.                 else {
  998.                     fireSweetAlert3()
  999.                 }
  1000.             }
  1001.         </script>
  1002.         <script async src="https://www.googletagmanager.com/gtag/js?id=G-9C4DLY6W7X"></script>
  1003.         <script>
  1004.             window.dataLayer = window.dataLayer || [];
  1005.             function gtag(){dataLayer.push(arguments);}
  1006.             gtag('js', new Date());
  1007.             gtag('config', 'G-9C4DLY6W7X');
  1008.         </script>
  1009. <script>
  1010.     // Exemple problématique potentiel :
  1011.     document.querySelector('.search-menu a').addEventListener('click', function(event) {
  1012.         event.preventDefault(); // Empêche le comportement par défaut
  1013.         window.location.href = "{{ path('panier_voir') }}"; // Redirige vers la page panier
  1014.     });
  1015. </script>
  1016. </body>
  1017. </html>