templates/Admin/Layout/loginBase.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2.     <!--[if IE 7 ]>    <html lang="{{ app.request.locale }}" class="ie7 no-js"> <![endif]-->
  3.     <!--[if IE 8 ]>    <html lang="{{ app.request.locale }}" class="ie8 no-js"> <![endif]-->
  4.     <!--[if IE 9 ]>    <html lang="{{ app.request.locale }}" class="ie9 no-js"> <![endif]-->
  5.     <!--[if (gt IE 9)|!(IE)]><!--> <html lang="{{ app.request.locale }}" class="no-js"> <!--<![endif]-->
  6.     <head>
  7.         <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  8.         <meta name="viewport" content="width=device-width, initial-scale=1">
  9.         <meta name="robots" content="noindex, nofollow">
  10.         {{ encore_entry_link_tags('styles') }}
  11.         {% block stylesheets %}{% endblock %}
  12.         <script type="text/javascript">
  13.             global = {
  14.                 locale: '{{ app.request.locale }}'
  15.             };
  16.         </script>
  17.         <title>{{ getAppName() }} {% block title %}{% endblock %}</title>
  18.     </head>
  19.     <body class="kt-quick-panel--right kt-demo-panel--right kt-offcanvas-panel--right kt-header--fixed kt-header-mobile--fixed kt-subheader--enabled kt-subheader--fixed kt-subheader--solid kt-aside--enabled kt-aside--fixed">
  20.         {% block html_body %}{% endblock %}
  21.         {{ encore_entry_script_tags('scripts') }}
  22.         {% block javascripts  %}{% endblock %}
  23.         {{ js_validator_config() }}
  24.         {{ init_js_validation() }}
  25.         {% if app.environment is same as('dev') %}
  26.             <script async src="//localhost:35729/livereload.js"></script>
  27.         {% endif %}
  28.     </body>
  29. </html>