templates/base.html.twig line 1

Open in your IDE?
  1. {# templates/base.html.twig #}
  2. <!DOCTYPE html>
  3. <html>
  4.     <head>
  5.         <meta charset="UTF-8">
  6.         <title>
  7.             {% block title %}TQM
  8.             {% endblock %}
  9.         </title>
  10.         {% block stylesheets %}
  11.             {{ encore_entry_link_tags('react-datepicker') }}
  12.             {{ encore_entry_link_tags('app') }}
  13.         {% endblock %}
  14.     </head>
  15.     <body class="font-pn">
  16.         <div id="main">
  17.             {% if is_granted('IS_AUTHENTICATED_FULLY') %}
  18.                 {% include 'header/authenticated.html.twig' %}
  19.             {% endif %}
  20.             <div id="{{ 'SecurityController' in app.request.get('_controller') or 'ResetPasswordController' in app.request.get('_controller') ? '' : 'content' }}">
  21.                 {% block body %}{% endblock %}
  22.             </div>
  23.         </div>
  24.         {% block javascripts %}
  25.             {{ encore_entry_script_tags('app') }}
  26.         {% endblock %}
  27.     </body>
  28. </html>