templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4.   <meta charset="utf-8">
  5.   <meta content="width=device-width, initial-scale=1.0" name="viewport">
  6.   <title>{% block title %}Avt - ingénierie{% endblock %}</title>
  7.   <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Nunito:300,300i,400,400i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
  8.   <link href="{{asset('assets/vendor/aos/aos.css')}}" rel="stylesheet">
  9.   <link href="{{asset('assets/vendor/bootstrap/css/bootstrap.min.css')}}" rel="stylesheet">
  10.   <link href="{{asset('assets/vendor/bootstrap-icons/bootstrap-icons.css')}}" rel="stylesheet">
  11.   <link href="{{asset('assets/vendor/glightbox/css/glightbox.min.css')}}" rel="stylesheet">
  12.   <link href="{{asset('assets/vendor/remixicon/remixicon.css')}}" rel="stylesheet">
  13.   <link href="{{asset('assets/vendor/swiper/swiper-bundle.min.css')}}" rel="stylesheet">
  14.   <link href="{{asset('assets/css/style.css')}}" rel="stylesheet">
  15.   <link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css" integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A==" crossorigin="" />
  16. </head>
  17. <body>
  18.   <!-- ======= Header ======= -->
  19.   <header id="header" class="header fixed-top">
  20.     <div class="container-fluid container-xl d-flex align-items-center justify-content-between">
  21.       <a href="{{ path('accueil') }}" class="logo d-flex align-items-center">
  22.         <img src="{{asset('assets/img/logo.jpg')}}" alt="">
  23.       </a>
  24.       <nav id="navbar" class="navbar">
  25.         <ul>
  26.           <li><a class="nav-link scrollto {{active is defined and active == "accueil" ? " active" : " "}}" href="{{ path('accueil') }}">Accueil</a></li>
  27.           <li><a class="nav-link scrollto {{active is defined and active == "offre" ? " active" : " "}}" href="{{ path('offre') }}">Offre digitale learning</a></li>
  28.           <li><a class="nav-link scrollto {{active is defined and active == "tim" ? " active" : " "}}" href="{{ path('tim') }}">TIM Solutions & LMS</a></li>
  29.           <li><a class="nav-link scrollto {{active is defined and active == "accompagnement" ? " active" : " "}}" href="{{ path('accompagnement') }}">Accompagnement & support</a></li>
  30.           <li><a class="nav-link scrollto {{active is defined and active == "rejoindre" ? " active" : " "}}" href="{{ path('rejoindre') }}">Nous rejoindre</a></li>
  31.           <li><a class="nav-link scrollto {{active is defined and active == "contact" ? " active" : " "}}" href="{{ path('contact') }}">Nous Contacter</a></li>
  32.           {# <li><a class="getstarted scrollto" href="{{ path('app_login') }}">Se connecter</a></li> #}
  33.         </ul>
  34.         <i class="bi bi-list mobile-nav-toggle"></i>
  35.       </nav>
  36.     </div>
  37.   </header>
  38.   <!-- End Header -->
  39.   <main id="main">
  40.     {% block body %}{% endblock %}
  41.   </main>
  42.   <!-- ======= Footer ======= -->
  43.   <footer id="footer" class="footer">
  44.     <div class="footer-top">
  45.       <div class="container">
  46.         <div class="row gy-4">
  47.           <div class="col-lg-4 col-md-12 footer-info">
  48.             <a href="index.html" class="logo d-flex align-items-center">
  49.               <span>Groupe AVT</span>
  50.             </a><br>
  51.             <p>
  52.               4 Rue des Pays-Bas (Bâtiment B)<br>
  53.               44300 Nantes<br><br>
  54.               <strong>Phone:</strong> 09 80 91 90 74<br>
  55.               <strong>Email:</strong> contact@avt-consultant.com<br>
  56.             </p>
  57.             <div class="social-links mt-3">
  58.               <a href="#" class="twitter"><i class="bi bi-twitter"></i></a>
  59.               <a href="#" class="facebook"><i class="bi bi-facebook"></i></a>
  60.               <a href="#" class="instagram"><i class="bi bi-instagram"></i></a>
  61.               <a href="#" class="linkedin"><i class="bi bi-linkedin"></i></a>
  62.             </div>
  63.           </div>
  64.           <div class="col-lg-4 col-12 footer-links">
  65.             <h4>Heure d'ouverture</h4>
  66.             <ul>
  67.               <li><i class="bi bi-chevron-right"></i> <a href="#">Du lundi au vendredi : 8h30 à 17h00</a></li>
  68.             </ul>
  69.           </div>
  70.           <div class="col-lg-4 col-6 footer-links">
  71.             <h4>Mention</h4>
  72.             <ul>
  73.               <li><i class="bi bi-chevron-right"></i> <a href="{{ path('confidentialite') }}"><strong>Politique de confidentialité</strong></a></li>
  74.               <li><i class="bi bi-chevron-right"></i> <a href="{{ path('cookies') }}"><strong>Politique de cookies</strong></a></li>
  75.             </ul>
  76.           </div>
  77.         </div>
  78.       </div>
  79.     </div>
  80.     <div class="container">
  81.       <div class="copyright">
  82.         &copy; Copyright <strong><span>Groupe AVT</span></strong>. Tous dorits reservés
  83.       </div>
  84.       <div class="credits">
  85.         Conçu par <a href=""> Groupe AVT </a>
  86.       </div>
  87.     </div>
  88.   </footer>
  89.   <!-- End Footer -->
  90.   <a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
  91.   <script src="{{asset('assets/vendor/aos/aos.js')}}"></script>
  92.   <script src="{{asset('assets/vendor/bootstrap/js/bootstrap.bundle.min.js')}}"></script>
  93.   <script src="{{asset('assets/vendor/glightbox/js/glightbox.min.js')}}"></script>
  94.   <script src="{{asset('assets/vendor/isotope-layout/isotope.pkgd.min.js')}}"></script>
  95.   <script src="{{asset('assets/vendor/swiper/swiper-bundle.min.js')}}"></script>
  96.   <script src="{{asset('assets/vendor/php-email-form/validate.js')}}"></script>
  97.   <script src="{{asset('assets/js/main.js')}}"></script>
  98.   <script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js" integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA==" crossorigin=""></script>
  99.   <script type="text/javascript">
  100.       var map = L.map('map').setView([47.2552859,-1.5014645,17], 13);
  101.       L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
  102.           attribution: '&copy;'
  103.       }).addTo(map);
  104.       L.marker([47.255069,-1.499901,21]).addTo(map)
  105.           .bindPopup('Vous êtes ici.<br>')
  106.           .openPopup();
  107.   </script>
  108. </body>
  109. </html>