templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}Cabinet-medical.eu, création de sites internet, CRM et ERP{% endblock %}</title>
  6.         <meta name="description" content="{%  block description %}{%  endblock %}">
  7.         <meta name="viewport" content="width=device-width, initial-scale=1">
  8.         {% block metas %}{% endblock %}
  9.         <link rel="apple-touch-icon" sizes="180x180" href="{{  asset('images/favicon2/apple-touch-icon.png') }}">
  10.         <link rel="icon" type="image/png" sizes="32x32" href="{{  asset('images/favicon2/favicon-32x32.png') }}">
  11.         <link rel="icon" type="image/png" sizes="16x16" href="{{  asset('images/favicon2/favicon-16x16.png') }}">
  12.         <link rel="manifest" href="{{  asset('images/favicon2/site.webmanifest') }}">
  13.         <meta name="msapplication-TileColor" content="#da532c">
  14.         <meta name="theme-color" content="#ffffff">
  15.         {% block stylesheets %}
  16.             {{ encore_entry_link_tags('app') }}
  17.         {% endblock %}
  18.     </head>
  19.     <body>
  20.         {% include 'includes/header.html.twig' %}
  21.         {%  block breadcrumbs %}{% endblock %}
  22.         {% block body %}{% endblock %}
  23.         {{ render(controller(
  24.             'App\\Controller\\FooterController::showAction'
  25.         )) }}
  26.         {% block javascripts %}
  27.             {{ encore_entry_script_tags('app') }}
  28.         {% endblock %}
  29.          <!-- Facebook Pixel Code -->
  30.         <script type="text/javascript" src="{{ asset('js/tarteaucitronjs/tarteaucitron.js') }}"></script>
  31.         <script src="{{ asset('js/tarteaucitronjs/lang/tarteaucitron.'~app.request.locale~'.js') }}"></script>
  32.         <script>
  33.             tarteaucitron.init({
  34.                 "hashtag": "#tarteaucitron", /* Ouvrir le panneau contenant ce hashtag */
  35.                 "cookieName": "tarteaucitron", /* Nom du Cookie */
  36.                 "orientation": "bottom", /* Position de la bannière (top - bottom) */
  37.                 "showAlertSmall": false, /* Voir la bannière réduite en bas à droite */
  38.                 "cookieslist": true, /* Voir la liste des cookies */
  39.                 "adblocker": false, /* Voir une alerte si un bloqueur de publicités est détecté */
  40.                 "AcceptAllCta": true, /* Voir le bouton accepter tout (quand highPrivacy est à true) */
  41.                 "highPrivacy": true, /* Désactiver le consentement automatique */
  42.                 "handleBrowserDNTRequest": false, /* Si la protection du suivi du navigateur est activée, tout interdire */
  43.                 "removeCredit": true, /* Retirer le lien vers tarteaucitron.js */
  44.                 "moreInfoLink": false, /* Afficher le lien "voir plus d'infos" */
  45.                 "useExternalCss": false, /* Si false, tarteaucitron.css sera chargé */
  46.                 "showIcon" : false
  47.             });
  48.             tarteaucitron.user.gtagUa = 'G-JHGS3ETTQV';
  49.             // tarteaucitron.user.gtagCrossdomain = ['example.com', 'example2.com'];
  50.             tarteaucitron.user.gtagMore = function () { /* add here your optionnal gtag() */ };
  51.             (tarteaucitron.job = tarteaucitron.job || []).push('gtag');
  52.         </script>
  53.     </body>
  54. </html>