templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="en" class="no-js">
  3. <head>
  4. <meta charset="utf-8"/>
  5. <title>
  6. {% block main_title %}Sharma Design House LLC - {% endblock %}
  7. {% block title %}{% endblock %}
  8. </title>
  9. {% include '/partials/_head.html.twig' %}
  10. {% include 'partials/_scripts.html.twig' %}
  11. </head>
  12. <body data-controller="main">
  13. <!--Start Header -->
  14. {% include 'partials/_loader.html.twig' %}
  15. {% include 'partials/_nav.html.twig' %}
  16. {% include 'partials/_mobile.html.twig' %}
  17. <!--End Header -->
  18. {% block body %}
  19. {% endblock %}
  20. {% include 'partials/_footer.html.twig' %}
  21. <a id="scrollUp" href="#top" title="Scroll to top" style="position: fixed; z-index: 2147483647;"></a>
  22. </body>
  23. </html>