Module/Core/Resources/views/layouts/default.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1">
  6.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7.     <title>{% block title %}Zimble Brand Site{% endblock %}</title>
  8.     <link rel="shortcut icon" type="image/x-icon" href="{{ asset('build/images/favicon.png') }}" />
  9. {#    <link rel="icon"#}
  10. {#          href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">#}
  11.     {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  12.     {% block stylesheets %}
  13.         {{ encore_entry_link_tags('app') }}
  14.     {% endblock %}
  15. </head>
  16. <body>
  17. {% block body %}
  18.     <div id="wrapper">
  19.         <div id="root">
  20.         </div>
  21.     </div>
  22. {% endblock %}
  23. {% block javascripts %}
  24.     {{ encore_entry_script_tags('app') }}
  25.     <!-- Google tag (gtag.js) -->
  26.     <script async src="https://www.googletagmanager.com/gtag/js?id=G-T0RK7R2NM2"></script>
  27.     <script>
  28.         window.dataLayer = window.dataLayer || [];
  29.         function gtag(){dataLayer.push(arguments);}
  30.         gtag('js', new Date());
  31.         gtag('config', 'G-T0RK7R2NM2');
  32.     </script>
  33. {% endblock %}
  34. </body>
  35. </html>