{% extends 'base.html.twig' %}
{% trans_default_domain 'Maritime' %}
{% block body %}
{{ parent() }}
{% include 'components/pageHeader.html.twig' with {page} %}
{% include 'components/breadcrumb.html.twig' with {pages: [{label: 'offers'}, {route: path(app.request.attributes.get('_route')), label: app.request.attributes.get('_route')}], variation: 'centered'} %}
{% include 'components/intro.html.twig' with {title: page.introTitle, subTitle: page.introSubTitle, description: page.introParagraph} %}
{% for paragraph in page.paragraphs %}
{% include 'components/paragraph.html.twig' with {paragraph} %}
{% endfor %}
{% include 'components/insuranceOffers/insuranceOffersBlock.html.twig' with {
icon: 'compass.svg',
subTitle: 'insurance_offers_block.sub_title'|trans,
title: 'insurance_offers_block.title'|trans,
description: 'insurance_offers_block.description'|trans,
page,
categories
} %}
{% include 'components/lastBloc.html.twig' with {lastBloc: page} %}
{% endblock %}