templates/default/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block body %}
  3.     {% if form is defined %}
  4.         <div class="container">
  5.             {% include 'sales_agreement/block/order.html.twig' with {
  6.                 'orderForm': form,
  7.                 'label' : 'Commande et options',
  8.                 'selectedPack': null,
  9.             } %}
  10.         </div>
  11.     {% endif %}
  12. {% endblock %}
  13. {% block javascripts %}
  14.     {{ encore_entry_script_tags('homePage') }}
  15. {% endblock %}