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

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% trans_default_domain 'Maritime' %}
  3. {% block body %}
  4.     {{ parent() }}
  5.     {% include 'components/pageHeader.html.twig' with {page} %}
  6.     {% include 'components/breadcrumb.html.twig' with {pages: [{label: 'offers'}, {route: path(app.request.attributes.get('_route')), label: app.request.attributes.get('_route')}], variation: 'centered'} %}
  7.     {% include 'components/intro.html.twig' with {title: page.introTitle, subTitle: page.introSubTitle, description: page.introParagraph} %}
  8.     {% for paragraph in page.paragraphs %}
  9.         {% include 'components/paragraph.html.twig' with {paragraph} %}
  10.     {% endfor %}
  11.     {% include 'components/insuranceOffers/insuranceOffersBlock.html.twig' with {
  12.         icon: 'compass.svg',
  13.         subTitle: 'insurance_offers_block.sub_title'|trans,
  14.         title: 'insurance_offers_block.title'|trans,
  15.         description: 'insurance_offers_block.description'|trans,
  16.         page,
  17.         categories
  18.     } %}
  19.     {% include 'components/lastBloc.html.twig' with {lastBloc: page} %}
  20. {% endblock %}