templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1">
  7.         <title>{% block title %}Welcome!{% endblock %}</title>
  8.         <link rel="shortcut icon" href="{{ asset('/favicon.ico') }}"/>
  9.         <link rel="apple-touch-icon" href="{{ asset('/apple-touch-icon.png') }}"/>
  10.         {% block stylesheets %}
  11.             {{ encore_entry_link_tags('app') }}
  12.         {% endblock %}
  13.         <!-- Google Tag Manager -->
  14.         <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  15.                     new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  16.                 j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  17.                 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  18.             })(window,document,'script','dataLayer','GTM-P77K97S');</script>
  19.         <!-- End Google Tag Manager -->
  20.         <!-- Global site tag (gtag.js) - Google Analytics -->
  21.         <script async src="https://www.googletagmanager.com/gtag/js?id=UA-107202069-3"></script>
  22.         <script>
  23.             window.dataLayer = window.dataLayer || [];
  24.             function gtag(){dataLayer.push(arguments);}
  25.             gtag('js', new Date());
  26.             gtag('config', 'UA-107202069-3');
  27.         </script>
  28.     </head>
  29.     <body>
  30.         <!-- Google Tag Manager (noscript) -->
  31.         <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-P77K97S"
  32.                           height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  33.         <!-- End Google Tag Manager (noscript) -->
  34.         {% include 'includes/header.html.twig' %}
  35.         {% block content %}{% endblock %}
  36.         {% include 'includes/footer.html.twig' %}
  37.         {% block javascripts %}
  38.             <script href="https://www.comsa.be/cookies-v2.js"></script>
  39.             {{ encore_entry_script_tags('app') }}
  40.         {% endblock %}
  41.     </body>
  42. </html>