templates/base_noauth.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}Kreno{% endblock %}</title>
  6.     
  7.         {% block stylesheets %}
  8.             {{ encore_entry_link_tags('app') }}
  9.         {% endblock %}
  10.     </head>
  11.     <body>
  12.         {% include '_elements/_header.html.twig' %}
  13.         <div class="container-fluid">
  14.             <div class="row">
  15.                 <main class="col-md-12 ms-sm-auto col-lg-12 px-md-4">
  16.                     {% block body %}{% endblock %}
  17.                 </main>
  18.             </div>
  19.         </div>
  20.         
  21.         {% include '_elements/_footer.html.twig' %}
  22.     </body>
  23.     {% block javascripts %}
  24.         {{ encore_entry_script_tags('app') }}
  25.     {% endblock %}
  26. </html>