templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <head>
  4.         {% include "partials/_head.html.twig" %}
  5.         {% block stylesheets %}{% endblock %}
  6.         <link rel="preconnect" href="https://fonts.googleapis.com">
  7.         <script src="https://kit.fontawesome.com/05141a746a.js" crossorigin="anonymous"></script>
  8.         <title>{% block title %}Manzowa{% endblock %}</title>
  9.     </head>
  10.     <body>
  11.         <div class="mo-wrapper">
  12.          {% if is_maintenance == false  %}
  13.             <!--header start -->
  14.             {% include "partials/_header.html.twig" %}
  15.             <!--header end-->
  16.          {% endif %}
  17.         {% if is_maintenance == false %}
  18.             <!--Section start -->
  19.             {% include "partials/_sidebar.html.twig" %}
  20.             <!--Section end -->
  21.         {% endif %}
  22.         <!--main start -->
  23.         <main role="main">
  24.             {% block body %}{% endblock %}
  25.             <!-- Inclusion The Modal -->
  26.             {# {% include "modal/_modal.html.twig" %} #}
  27.         </main>
  28.         <!--main end -->
  29.         {% if is_maintenance == false  %}
  30.             <!--footer start -->
  31.             {% include "partials/_footer.html.twig" %}
  32.             <!--footer end-->
  33.          {% endif %}
  34.     {% block javascripts %}
  35.         {{ encore_entry_script_tags('app') }}
  36.     {% endblock %}
  37.     </body>
  38. </html>