templates/layouts/simple.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="{{ app.request.locale }}">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{{ "app_name"|trans() }} - {% block title %}{{ "hello"|trans() }}{% endblock %}</title>
  6.         <link rel="shortcut icon" href="{{ asset('build/assets/media/logos/cropped-parking-32x32.png') }}"/>
  7.         <link rel="shortcut icon" href="{{ asset('build/assets/media/logos/cropped-parking-192x192.png') }}"/>
  8.         {% block stylesheets %}
  9.             {# 'app' must match the first argument to addEntry() in webpack.config.js #}
  10.             {{ encore_entry_link_tags('app') }}
  11.             <!-- Renders a link tag (if your module requires any CSS)
  12.                  <link rel="stylesheet" href="/build/app.css"> -->
  13.         {% endblock %}
  14.     </head>
  15.     <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 kt-page--loading">
  16.     <!-- begin:: Page -->
  17.         <div class="kt-grid kt-grid--ver kt-grid--root">
  18.             <div class="kt-grid kt-grid--hor kt-grid--root  kt-login kt-login--v6 kt-login--signin" id="kt_login">
  19.                 {% block body %} {% endblock %}
  20.             </div>
  21.         </div>
  22.         <!-- end:: Page -->
  23.         {% block javascripts %}
  24.             <!-- begin::Global Config(global config for global JS sciprts) -->
  25.             <script>
  26.                 var KTAppOptions = {
  27.                     "colors": {
  28.                         "state": {
  29.                             "brand": "#5d78ff",
  30.                             "dark": "#282a3c",
  31.                             "light": "#ffffff",
  32.                             "primary": "#5867dd",
  33.                             "success": "#34bfa3",
  34.                             "info": "#36a3f7",
  35.                             "warning": "#ffb822",
  36.                             "danger": "#fd3995"
  37.                         },
  38.                         "base": {
  39.                             "label": [
  40.                                 "#c5cbe3",
  41.                                 "#a1a8c3",
  42.                                 "#3d4465",
  43.                                 "#3e4466"
  44.                             ],
  45.                             "shape": [
  46.                                 "#f0f3ff",
  47.                                 "#d9dffa",
  48.                                 "#afb4d4",
  49.                                 "#646c9a"
  50.                             ]
  51.                         }
  52.                     }
  53.                 };
  54.             </script>
  55.             <!-- end::Global Config -->
  56.             <script>
  57.                 window.locale = {{ app.request.locale|json_encode|raw }};
  58.             </script>
  59.             {{ encore_entry_script_tags('app') }}
  60.             <!-- Renders app.js & a webpack runtime.js file
  61.                 <script src="/build/runtime.js"></script>
  62.                 <script src="/build/app.js"></script> -->
  63.         {% endblock %}
  64.     </body>
  65. </html>