{% extends 'base.html.twig' %}
{% block title %}Profil - Services{% endblock %}
{% block body %}
{% block block_navstart %} {% include "_partials/_nav.html.twig" %} {% endblock %}
<div class="container">
<div class="row">
<div class="col-12 border border-light my-0">
{% for userP in userProfil %}
{% include "_partials/_profilenav.html.twig" %}
{% endfor %}
</div>
<div class="col-12 border border-light my-0">
<h1><strong>Nos Services et Prestations:</strong></h1>
{% for prestation in myPrestations %}
<div class="">
<h3>{{ prestation.name }}</h3>
<p>{{ prestation.description }}</p>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
{% endblock %}