templates/core/__skeleton.html.twig line 1

  1. {% set currentPath = path(app.request.attributes.get('_route'), app.request.attributes.get('_route_params')) %}
  2. <!DOCTYPE html>
  3. <html lang="en-gb" xml:lang="en">
  4.     <head>
  5.         <title>{{ data.pageTitle }}</title>
  6.         <meta name="description" content="{{ data.pageDescription }}">
  7.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8.         <meta charset="UTF-8">
  9.         {% if 'privacy-policy' in currentPath or 'terms-conditions' in currentPath %}
  10.         <meta name="robot" content="noindex, nofollow">
  11.         {% endif %}
  12.         <link rel="stylesheet" href="{{ asset('assets/css/style.min.css') }}">
  13.         <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-KVLJJKH');</script>
  14.     </head>
  15.     <body>
  16.         <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KVLJJKH" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  17.         {% include 'core/_header.html.twig' %}
  18.         {% block main %}{% endblock %}
  19.         {% include 'core/_footer.html.twig' %}
  20.         {% include 'core/_modal.html.twig' %}
  21.         <script src="{{ asset('assets/js/scripts.min.js') }}"></script>
  22.     </body>
  23. </html>