templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta name="viewport"
  6.               content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7.         <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8.         <title>{% block title %}{% endblock %}</title>
  9.         {% block stylesheets %}
  10.             {{ encore_entry_link_tags('app') }}
  11.         {% endblock %}
  12.         {% block javascripts %}
  13.             <script>
  14.                 let favicons = [
  15.                     '{{ generalSettings.settingsList.faviconDark }}',
  16.                     '{{ generalSettings.settingsList.faviconLight }}'
  17.                 ];
  18.             </script>
  19.             {{ encore_entry_script_tags('app') }}
  20.         {% endblock %}
  21.     </head>
  22.     <body data-lang="{{ app.request.locale }}">
  23.         {% block body %}{% endblock %}
  24.     </body>
  25. </html>