templates/base.html.twig line 28

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="{{ app.request.locale|split('_')[0] }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <script src="https://consent.cookiefirst.com/sites/theatertotal.de-944f7496-632a-4ede-a931-0fc19ec69bbb/consent.js"></script>
  8. <title>TheaterTotal</title>
  9. <link rel="icon" href="favicon.ico" type="image/x-icon">
  10. {% block meta %}
  11. {% include "@SuluWebsite/Extension/seo.html.twig" with {
  12. "seo": extension.seo|default([]),
  13. "content": content|default([]),
  14. "localizations": localizations|default([]),
  15. "shadowBaseLocale": shadowBaseLocale|default(),
  16. } %}
  17. {% endblock %}
  18. <!-- Favicons -->
  19. {% block style %}
  20. {{ encore_entry_link_tags('app') }}
  21. {% endblock %}
  22. </head>
  23. <body>
  24. {% block header %}
  25. {% include "partials/header.html.twig" %}
  26. {% endblock %}
  27. {% block hero %}
  28. {% include "partials/hero.html.twig" %}
  29. {% endblock %}
  30. <main>
  31. {% block content %}{% endblock %}
  32. </main>
  33. {#{% if previewContentReplacer is not defined %}
  34. {{ render_esi(path('ch_cookie_consent.show_if_cookie_consent_not_set')) }}
  35. {% endif %}#}
  36. {#{{ render_esi(path('ch_cookie_consent.show_if_cookie_consent_not_set')) }}#}
  37. {% block footer %}
  38. {% include "partials/footer.html.twig" %}
  39. {% endblock %}
  40. {% block javascripts %}
  41. {{ encore_entry_script_tags('app') }}
  42. {% endblock %}
  43. </body>
  44. </html>