templates/layout/master.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <head>
  4.         <!-- Google tag (gtag.js) -->
  5.         <script async src="https://www.googletagmanager.com/gtag/js?id={{ ga_measurement_id }}"></script>
  6.         <script>
  7.             window.dataLayer = window.dataLayer || [];
  8.             function gtag(){dataLayer.push(arguments);}
  9.             gtag('js', new Date());
  10.             gtag('config', '{{ ga_measurement_id }}');
  11.         </script>
  12.         <meta charset="utf-8">
  13.         <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  14.         <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
  15.         <meta name="author" content="{{ sitename }}" />
  16.         <title>{% block title %}{{ title }} | {{ sitename }}{% endblock %}</title>
  17.         <link rel="shortcut icon" href="{{ asset('/favicon.png') }}" type="image/x-icon" />
  18.         <link href="https://fonts.googleapis.com/css?family=Roboto:100,400,500,700,900&amp;subset=latin-ext" rel="stylesheet">
  19.         {{ encore_entry_link_tags('tailwind') }}
  20.         {{ encore_entry_link_tags('app') }}
  21.         {% block styles %}{% endblock %}
  22.         <!--[if lt IE 9]>
  23.         <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
  24.         <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  25.         <![endif]-->
  26.     </head>
  27.     <body class="{% if body_class is defined %}{{ body_class }}{% endif %}">
  28.         <div class="mobile-info">
  29.             <div class="mobile-info-content">
  30.                 <div class="logo"></div>
  31.                 <h1>Welcome to back office</h1>
  32.                 <p>Please, switch to higher resolution screen to be able to work in our back office. The minimum screen resolution is 1300px or higher.</p>
  33.             </div>
  34.         </div>
  35.         <div class="hide-mobile">
  36.             {% if app_type is defined  %}
  37.                 {% set sidebar = 'sidebar/sidebar_' ~ app_type ~ '.html.twig' %}
  38.                 {% include sidebar %}
  39.             {% endif %}
  40.             {% block content %}{% endblock %}
  41.             <div class="confirm">
  42.                 <div></div>
  43.                 <div>
  44.                     <div id="confirmMessage">Confirm text</div>
  45.                     <div>
  46.                         <input class="confirmBtn" id="confirmYes" type="button" value="Yes" />
  47.                         <input class="confirmBtn" id="confirmNo" type="button" value="No" />
  48.                     </div>
  49.                 </div>
  50.             </div>
  51.         </div>
  52.         {{ encore_entry_script_tags('app') }}
  53.         <script type="application/javascript" src="{{ asset('assets/js/jquery-3.6.1-min.js') }}"></script>
  54.         {% block javascripts %}{% endblock %}
  55.     </body>
  56. </html>