templates/layout_base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. {% set isCloud =  app.request.server.get('APP_CLOUD') %}
  3. <html lang="{{ app.request.locale }}">
  4. <head>
  5.     <meta charset="utf-8">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1">
  7.     <title>EdgeConn {{ isCloud ? "Cloud" : "4.0" }} | {{ page|default("") }}</title>
  8.     {#    <link rel="shortcut icon" href="{{ asset('assets/images/icon.ico') }}" /> #}
  9.     <link rel="icon" type="image/png" sizes="32x32" href="{{ asset('assets/images/favicon_32x32.png') }}">
  10.     <link rel="icon" type="image/png" sizes="16x16" href="{{ asset('assets/images/favicon_16x16.png') }}">
  11.     <link rel="apple-touch-icon" sizes="128x128" href="{{ asset('assets/images/tosca/EdgeConn_128x128.png') }}">
  12.     {#    <!-- Google Font: Source Sans Pro --> #}
  13.     {#    <link rel="stylesheet" #}
  14.     {#          href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&amp;display=fallback"> #}
  15.     {#    <link rel="stylesheet" #}
  16.     {#          href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,700&amp;display=fallback"> #}
  17.     <!-- Font Awesome -->
  18.     <link rel="stylesheet" href="{{ asset('assets/plugins/fontawesome-free/css/all.min.css') }}">
  19.     <link rel="stylesheet" href="{{ asset('assets/plugins/icheck-bootstrap/icheck-bootstrap.min.css') }}">
  20.     <!-- Theme style -->
  21.     <link rel="stylesheet" href="{{ asset('assets/base/css/adminlte.min.css') }}">
  22.     <link rel="manifest" href="{{ asset('assets/manifest.json') }}">
  23.     <style>
  24.         body {
  25.             font-family: "Open Sans", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  26.         }
  27.     </style>
  28.     {% block stylesheets %}
  29.     {% endblock %}
  30. </head>
  31. <body class="{{ bodyClass }}" cz-shortcut-listen="true" style="min-height: 466px;">
  32. {% block body %}
  33. {% endblock %}
  34. <!-- jQuery -->
  35. <script src="{{ asset('assets/plugins/jquery/jquery.min.js') }}"></script>
  36. <!-- Bootstrap 4 -->
  37. <script src="{{ asset('assets/plugins/bootstrap/js/bootstrap.bundle.min.js') }}"></script>
  38. <!-- AdminLTE App -->
  39. <script src="{{ asset('assets/base/js/adminlte.min.js') }}"></script>
  40. {% block javascripts %}{% endblock %}
  41. </body>
  42. </html>