templates/backOffice/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 http-equiv="X-UA-Compatible" content="IE=edge">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1">
  7.         <title>
  8.             {% block title %}
  9.                 {% if page_title is defined %} {{ page_title }} - {% endif %}
  10.                 Doctorvida Pocket
  11.             {% endblock %}
  12.         </title>
  13.         {% block stylesheets %}
  14.             {{ encore_entry_link_tags('app') }}
  15.         {% endblock %}
  16.     </head>
  17.     <body id="login" class="vh-100">
  18.         {% block header %}{% endblock %}
  19.         <div class="container-fluid vh-100">
  20.             {% block body %}{% endblock %}
  21.         </div>
  22.         {% block javascripts %}
  23.             {{ encore_entry_script_tags('app') }}
  24.         {% endblock %}
  25.     </body>
  26. </html>