templates/base-no-menu.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     {%  include('base_components/base_head.html.twig') %}
  5.     {% block stylesheets %}
  6.         {{ encore_entry_link_tags('app') }}
  7.     {% endblock %}
  8.     {% block javascripts %}
  9.         {{ encore_entry_script_tags('app') }}
  10.     {% endblock %}
  11. </head>
  12. <body class="nav-fixed">
  13. <div id="layoutAuthentication" class="login-background">
  14.     <div id="layoutAuthentication_content">
  15.         <main>
  16.             <div class="container">
  17.                 <div class="row justify-content-center">
  18.                     <div class="col-lg-5">
  19.                         {% block body %}
  20.                         {% endblock %}
  21.                     </div>
  22.                 </div>
  23.             </div>
  24.         </main>
  25.     </div>
  26.     {% include('base_components/base_footer.html.twig') %}
  27. </div>
  28. </body>
  29. </html>