src/Frontend/Themes/Web/Core/Layout/Templates/Base.html.twig line 1

Open in your IDE?
  1. {% set webName = 'tomil' %}
  2. {% set lastChange = '?v=1737739015702' %}
  3. <!DOCTYPE html>
  4. <html lang="{{ FRONTEND_LANGUAGE|default(SITE_DEFAULT_LANGUAGE) }}" class="no-js scroll-smooth">
  5.     {% block head %}{% include "Core/Layout/Templates/Head.html.twig" %}{% endblock %}
  6.     <body itemscope itemtype="https://schema.org/WebPage" class="{% if page.id == '1' %}homepage{% else %}subpage page-{{ page.id }}{% endif %}" id="{{ webName }}">
  7.         <div class="flex flex-col min-h-screen max-w-screen-4xl mx-auto shadow-xl" x-data="{ scrollTop: false }" x-init="scrollTop = window.scrollY > 1">
  8.             {% include "Core/Layout/Templates/Header.html.twig" %}
  9.             {% block main %}{% endblock %}
  10.             {% block footer %}{% include "Core/Layout/Templates/Footer.html.twig" %}{% endblock %}
  11.         </div>
  12.         <script src="{{ THEME_URL }}/Core/Layout/assets/core.min.js{{ lastChange }}" defer></script>
  13.         {% block scripts %}{% endblock %}
  14.         {% if cookiebar_template %}{% include cookiebar_template %}{% endif %}
  15.         {% include "Core/Layout/Templates/Section/Sprite.html.twig" %}
  16.     </body>
  17. </html>