templates/front/Devis/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% trans_default_domain 'Devis' %}
  3. {% block stylesheets %}
  4.     {{ parent() }}
  5.     <link type="text/css" rel="stylesheet" href="{{ asset('bundles/craueformflow/css/buttons.css') }}" />
  6. {% endblock %}
  7. {% block body %}
  8.     {% include 'components/breadcrumb.html.twig' with {pages: [{route: path(app.request.attributes.get('_route')), label: app.request.attributes.get('_route')}], variation: 'centered'} %}
  9.     {% include 'components/intro.html.twig' with {title: 'Devis en ligne'} %}
  10.     {% include "forms/devis.html.twig" %}
  11. {% endblock %}
  12. {% block javascripts %}
  13.     {{ parent() }}
  14.     {{ encore_entry_script_tags('sinister') }}
  15. {% endblock %}