templates/client/common/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1">
  6.     {{ leogout_seo() }}
  7.     <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
  8.     {{ encore_entry_link_tags('client') }}
  9.     {% block stylesheets %}{% endblock %}
  10. </head>
  11. <body>
  12.     <div class="tm-page">
  13.         {% set menuCourses = menu.getCoursesMenu %}
  14.         {% set menuCareerPaths = menu.getCareerPathsMenu %}
  15.         {% set minicart = cartHelper.getSessionCart %}
  16.         {{ include("/client/common/parts/mobile.html.twig") }}
  17.         {{ include("/client/common/parts/header.html.twig") }}
  18.         {{ include("/client/common/parts/alerts.html.twig") }}
  19.         {% block body %}
  20.             {{ include("/client/common/test.html.twig") }}
  21.         {% endblock %}
  22.         {{ include("/client/common/parts/footer.html.twig") }}
  23.     </div>
  24.     {{ encore_entry_script_tags('client') }}
  25.     {% block javascripts %}{% endblock %}
  26. </body>
  27. </html>