{% extends 'base.html.twig' %}
{% trans_default_domain 'Presentation' %}
{% block body %}
{{ parent() }}
{% include 'components/breadcrumb.html.twig' with {pages: [{label: 'about'}, {route: path('app_presentation_index'), label: 'app_presentation_index'}]} %}
{% include 'components/intro.html.twig' with {title: 'intro.title'|trans, subTitle: 'intro.subTitle'|trans, description: page.introDescription, icon: 'helm.svg'} %}
{% for paragraph in page.paragraphs %}
{% include 'components/paragraph.html.twig' with {paragraph} %}
{% endfor %}
{% include 'components/lastBloc.html.twig' with {lastBloc: page} %}
{% endblock %}