templates/front/layouts/default.twig line 1

Open in your IDE?
  1. <!doctype html>
  2. <html lang="pl" id="top">
  3. <head>
  4.     {% set defaultTags = title is defined ? {'title': title} : [] %}
  5.     {% include "front/includes/head.twig" with { metatags: entity.metaTags|default(defaultTags) } %}
  6. </head>
  7. <body>
  8. <!-- Google Tag Manager (noscript) -->
  9. <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T4WFC87"
  10.                   height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  11. <!-- End Google Tag Manager (noscript) -->
  12. <!-- HEADER -->
  13. {% include "front/includes/header.twig" %}
  14. <!-- MAIN -->
  15. <main>
  16.     {% block content %}{% endblock %}
  17. </main>
  18. <!-- FOOTER -->
  19. {% include "front/includes/footer.twig" %}
  20. <!-- SCRIPTS -->
  21. {% include "front/includes/scripts.twig" %}
  22. {% block script %}{% endblock %}
  23. </body>
  24. </html>