vendor/excelwebzone/symfony-admin-bundle/src/Resources/views/base.html.twig line 1

Open in your IDE?
  1. <!doctype html>
  2. <html lang="{{ app.request.locale }}">
  3.   <head>
  4.     <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  5.     <meta charset="utf-8" />
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
  7.     <meta name="referrer" content="origin-when-cross-origin" />
  8.     <!-- SEO Meta Tags -->
  9.     <title>{% block title %}Ledger{% endblock %}</title>
  10.     <link rel="canonical" href="{{ app.request.uri }}" />
  11.     <!-- End SEO Meta Tags -->
  12.     {% block stylesheets %}
  13.       <link rel="stylesheet" href="{{ asset('build/css/app.css') }}">
  14.     {% endblock %}
  15.     {% block icons %}
  16.       <link rel="shortcut icon" href="{{ asset('favicon.ico') }}">
  17.       <link rel="apple-touch-icon" sizes="120x120" href="{{ asset('apple-touch-icon.png') }}">
  18.     {% endblock %}
  19.     {% block head %}{% endblock %}
  20.   </head>
  21.   <body class="{% block body_class %}{% endblock %} logged-{% if is_granted('ROLE_USER') %}in{% else %}out{% endif %} {{ app.request.attributes.get('_route') }}">
  22.     {% block layout %}{% endblock %}
  23.     {% block javascripts %}
  24.       <script>const CONFIG = {{ jsConfig|default([])|json_encode|raw }};</script>
  25.       <script src="{{ asset('build/js/app.js') }}"></script>
  26.     {% endblock %}
  27.   </body>
  28. </html>