templates/base_front.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         {% block meta %}{% endblock %}
  6.         <meta name="robots" content="noindex">
  7.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8.         <link rel="stylesheet" href="{{ asset('css/styles.css') }}">
  9.         <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
  10.         <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" />
  11.         <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
  12.         <link rel="stylesheet" href="https://unpkg.com/leaflet@1.7.1/dist/leaflet.css"
  13.               integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
  14.               crossorigin=""/>
  15.         <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css"/>
  16.         <link rel="stylesheet" type="text/css" href="https://cdn.tutorialjinni.com/SimpleLightbox/2.1.0/simpleLightbox.min.css" />
  17.         <style>
  18.             .slbContentOuter, .slbWrapOuter {
  19.                 z-index:9999!important;
  20.             }
  21.             .slbArrow.next {
  22.                 right:140px!important;
  23.             }
  24.             .slbArrow.prev {
  25.                 left:140px!important;
  26.             }
  27.             @media only screen and (max-width: 576px) {
  28.                 .slbArrow.next {
  29.                     right:0!important;
  30.                 }
  31.                 .slbArrow.prev {
  32.                     left:0!important;
  33.                 }
  34.             }
  35.         </style>
  36.         {% block stylesheets %}{% endblock %}
  37.         <script id="Cookiebot" src="https://consent.cookiebot.com/uc.js" data-cbid="625fe85a-ec86-46bc-8777-b7558087ed02" data-blockingmode="auto" type="text/javascript"></script>
  38.     </head>
  39.     <body>
  40.     {% if app.user %}
  41.         <a href="{{ path('back_dashboard') }}" class="pl-4 pr-4 pt-3 pb-3 position-fixed white" style="top:0; right:0;background:black;z-index:99999">Administration</a>
  42.     {% endif %}
  43.     {% include 'front/inc/header.html.twig' %}
  44.     {% block body %}{% endblock %}
  45.     {% include 'front/inc/footer.html.twig' %}
  46.     <!-- jQuery -->
  47.     <script src="{{ asset('lib/jquery/jquery.min.js') }}"></script>
  48.     <!-- Bootstrap -->
  49.     <script src="{{ asset('lib/bootstrap/js/bootstrap.bundle.min.js') }}"></script>
  50.     <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script>
  51.     <script src="https://unpkg.com/leaflet@1.7.1/dist/leaflet.js"
  52.             integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
  53.             crossorigin="" async></script>
  54.     <script type="text/javascript" src="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js"></script>
  55.     <script type="module" src="{{ asset('js/main.js') }}" async></script>
  56.     {% block javascripts %}{% endblock %}
  57.     </body>
  58. </html>