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 custom_css %}{% endblock %}
  6.   </head>
  7.   <body class="d-flex flex-column min-vh-100 {{extendClass is defined ? extendClass : ''}} ">
  8.     {% if app.environment == 'prod' or app.environment == 'PROD' %}
  9.     <!-- Google Tag Manager (noscript) -->
  10.     <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KXCZ6DN"
  11.     height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  12.     <!-- End Google Tag Manager (noscript) -->
  13.     {% endif %}
  14.     <!-- Fixed navbar -->
  15.     {% include "partials/_menu.html.twig" %}
  16.     <!-- Begin page content -->
  17.     <main role="main" class="flex-grow-1">
  18.         {% block page_contents %}{% endblock %}
  19.     </main>
  20.     <!-- Footer -->
  21.     {% include "partials/_footer.html.twig" %}
  22.     
  23.     <!-- Model -->
  24.     {% include "partials/_modal.html.twig" %}
  25.     <!-- JavaScript -->
  26.     {% include "partials/_footer-js.html.twig" %}
  27.     {% block custom_javascripts %}{% endblock %}
  28.       {# <script defer type='text/javascript' src='https://flow.lead-ia.com/chatbot/9c345c27-89fd-4018-817a-9cb1437b5a68.js'></script> #}
  29.   </body>
  30. </html>