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 %}Mes Euros - Outil de gestion des 2 euros commémoratives{% endblock %}</title>
  6.         {% block stylesheets %}
  7.             <link rel="stylesheet" type="text/css" href="{{ asset('sass/base.css') }}" />
  8.         {% endblock %}
  9.         <meta name="description" content="Outil de gestion des 2€ commémoratives">
  10.         <meta name="keywords" content="euros, euros commémoratives, commémorative, outil de gestion, outil, gestion, collection, 2 euros, 2€, commémorations">
  11.         <meta name="viewport" content="width=device-width, initial-scale=1">
  12.         <meta name="apple-mobile-web-app-capable" content="yes" />
  13.     </head>
  14.     <body>
  15.         {% block body %}
  16.             {% block menu %}
  17.             {% endblock %}
  18.             Bonjour
  19.         {% endblock %}
  20.         {% block javascripts %}
  21.             <script src="{{ asset('js/jquery.js') }}"></script>
  22.             <script src="{{ asset('js/jquery.cookie.js') }}"></script>
  23.             <script src="{{ asset('js/bootstrap.min.js') }}"></script>
  24.             <script src="{{ asset('js/base.js') }}"></script>
  25.             <!-- Global site tag (gtag.js) - Google Analytics -->
  26.             <script async src="https://www.googletagmanager.com/gtag/js?id=G-N63GHP1XR0"></script>
  27.             <script>
  28.                 window.dataLayer = window.dataLayer || [];
  29.                 function gtag(){dataLayer.push(arguments);}
  30.                 gtag('js', new Date());
  31.                 gtag('config', 'G-N63GHP1XR0');
  32.             </script>
  33.         {% endblock %}
  34.     </body>
  35. </html>