templates/base.html.twig line 1

Open in your IDE?
  1. {% import 'app/_inc/macros.html.twig' as m %}
  2. {% set path = app.request.attributes.get('_route') %}
  3. <!DOCTYPE html>
  4. <html lang="{{ app.request.locale }}">
  5. <head>
  6.     <meta charset="UTF-8">
  7.     {% include 'app/_inc/_stats.html.twig' %}
  8.     {% block seo %}
  9.         {% set entity = product is defined ? product :
  10.             category is defined ? category :
  11.             article is defined ? article :
  12.             page is defined ? page :
  13.             realisation is defined ? realisation :
  14.             null %}
  15.         {{ seo.generate(app.request.get('_route'), app.request.locale,entity)|raw }}
  16.     {% endblock %}
  17.     {% block meta %}{% endblock %}
  18.     {% block libcss %}{% endblock %}
  19.     {% include 'app/_inc/_theme.html.twig' %}
  20.     {% block css %}{% endblock %}
  21. </head>
  22. <body>
  23. <div id="app">
  24.     {% include 'app/_inc/_header.html.twig' %}
  25.     {% block content %}{% endblock %}
  26. </div>
  27. {# {% include 'app/_inc/_modal.html.twig' %} #}
  28. {% include 'app/_inc/_cookies.html.twig' %}
  29. {% include 'app/_inc/_footer.html.twig' %}
  30. {% block libjs %}{% endblock %}
  31. <div data-lg='{
  32.             "addWish": "{{ 'product.wish.addok'|trans }}",
  33.             "removeWish": "{{ 'product.wish.removeok'|trans }}",
  34.             "attr": "{{ 'product.errorAttr'|trans }}",
  35.             "error": "{{ 'all.error'|trans }}",
  36.             "successAdd": "{{ 'product.add.txt'|trans }}",
  37.             "close": "{{ 'all.close'|trans }}"
  38. }'></div>
  39. {% include 'app/_inc/_vars.html.twig' %}
  40. {{ encore_entry_script_tags('app-gsap-js') }}
  41. {{ encore_entry_script_tags('app-base-js') }}
  42. {% block js %}{% endblock %}
  43. <div data-cursor>
  44.     <div class="cursor"></div>
  45. </div>
  46. </body>
  47. </html>