{% extends 'base.html.twig' %}
{% trans_default_domain 'Service' %}
{% block body %}
{{ parent() }}
{% include 'components/pageHeader.html.twig' with {page} %}
{% include 'components/breadcrumb.html.twig' with {pages: [{label: 'services'}]} %}
{% for service in services %}
{% include 'components/serviceParagraph.html.twig' with {service} only %}
{% endfor %}
<img class="service-bottom-block-top-separation" src="{{ asset('build/images/pages/services/bottom-block-wave.svg') }}" alt="Assurboat">
<div class="service-bottom-block">
<div class="service-bottom-block-content">
<p class="description">
{% set titleArray = 'bottom_block.text'|trans|raw|split('*') %}
{% for titlePart in titleArray %}
{% if loop.index0 % 2 == 0 %}
{{ titlePart|raw }}
{% else %}
<span class="alternate-text">
{{ titlePart|raw }}
</span>
{% endif %}
{% endfor %}
</p>
<div class="buttons-row">
<a href="{{ path('app_devis_index') }}" class="button">{{ 'bottom_block.button1'|trans }}</a>
<a href="{{ path('app_contact_show') }}" class="button button-alternate-2">{{ 'bottom_block.button2'|trans }}</a>
</div>
</div>
</div>
{% endblock %}