src/Front/Templates/Index/index.html.twig line 1

  1. {% extends '@front_templates/base.html.twig' %}
  2. {% block content %}
  3.     {% for block in entity.blocks %}
  4.         {% include '@front_templates/Index/_blocks/' ~ block.type.value ~ '.html.twig' %}
  5.     {% endfor %}
  6. {% endblock %}
  7. {% block additionalJS %}
  8.     <script>
  9.         const TRANSLATIONS = {
  10.             SPLIDE_NEXT_BTN: '{{ 'T_SPLIDE_NEXT'|trans }}',
  11.             SPLIDE_PREV_BTN: '{{ 'T_SPLIDE_PREV'|trans }}',
  12.             SPLIDE_SLIDEX: '{{ 'T_SPLIDE_SLIDEX'|trans }}',
  13.         }
  14.     </script>
  15. {% endblock %}