templates/base.html.twig line 55

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="{{ app.request.locale|split('_')[0] }}">
  3.     <head>
  4.         <!-- Google Tag Manager -->
  5.         <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  6.                     new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  7.                 j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  8.                 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  9.             })(window,document,'script','dataLayer','GTM-WB8BDM9');</script>
  10.         <!-- End Google Tag Manager -->
  11.         <meta charset="utf-8">
  12.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  13.         <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
  14.         <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
  15.         <base href="{{ asset('/') }}">
  16.         <script rel="preload" as="script" src="https://unpkg.com/vue@2.6.11/dist/vue.runtime.min.js"></script>
  17.         <script rel="preload" as="script" src="{{ asset('build/website/dist/modern.min.js') }}" async></script>
  18.         <link media="all" rel="stylesheet" href="{{ asset('build/website/dist/css/fonts.css') }}">
  19.         <link media="all" rel="stylesheet" href="{{ asset('build/website/dist/css/reset.css') }}">
  20.         <link media="all" rel="stylesheet" href="{{ asset('build/website/dist/css/index.css') }}">
  21.         {% block meta %}
  22.             {% include "@SuluWebsite/Extension/seo.html.twig" with {
  23.                 "open_graph": extension.open_graph|default([]),
  24.                 "seo": extension.seo|default([]),
  25.                 "content": content|default([]),
  26.                 "localizations": localizations|default([]),
  27.                 "shadowBaseLocale": shadowBaseLocale|default(),
  28.             } %}
  29.         {% endblock %}
  30.         {% block style %}{% endblock %}
  31.     </head>
  32.     <body>
  33.     <script>
  34.         var isIE11 = !!window.MSInputMethodContext && !!document.documentMode;
  35.         if (isIE11)
  36.             document.body.innerHTML =
  37.                 "Sorry, your browser is not supported. Please install a newer browser";
  38.     </script>
  39.     <noscript>
  40.         <strong>
  41.             We're sorry but this page doesn't work properly without JavaScript
  42.             enabled. Please enable it to continue.
  43.         </strong>
  44.     </noscript>
  45.     <!-- Google Tag Manager (noscript) -->
  46.         <noscript>
  47.             <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WB8BDM9" height="0" width="0" style="display:none;visibility:hidden"></iframe>
  48.         </noscript>
  49.     <!-- End Google Tag Manager (noscript) -->
  50.         {% block header %}
  51.             {{ include('pages/components/header.html.twig') }}
  52.         {% endblock %}
  53.         {% block contact_button %}
  54.             {{ include('pages/components/contactButton.html.twig') }}
  55.         {% endblock %}
  56.         <div class="main-order">
  57.         {% block content %}{% endblock %}
  58.         </div>
  59.         {% block footer %}
  60.             {{ include('pages/components/footer.html.twig') }}
  61.         {% endblock %}
  62.         {% block cookies %}
  63.             {{ include('pages/components/cookies.html.twig') }}
  64.         {% endblock %}
  65.         {% block javascripts %}{% endblock %}
  66.     </body>
  67. </html>