templates/pages/page.nos-honoraires.html.twig line 1
{% extends 'base.html.twig' %}{% block title %}{{ settings[0].siteName }} : {{ page.name }}{% endblock %}{% block body %}{% include '_includes/_breadcrumbs.html.twig' %}<div class="container py-5"><div class="row d-flex justify-content-center"><div class="col-lg-6 col-sm-12 text-center"><h4 class="text-uppercase fw-bold color1">{{ page.title|raw }}</h4><div class="color2 text-small">{{ page.subtitle|replace({'<div>': '', '</div>': '',})|raw }}</div></div></div></div><div class="container"><div class="row row-cols-1 row-cols-md-3 g-5">{% for honoraire in honoraires %}<div class="col" style="height: 370px;"><div class="card h-100"><div class="card-body bgcolor-1 text-center d-flex flex-column justify-content-center"><h5 class="text-white fw-bold text-uppercase">{{ honoraire.title|replace({'<div>': '', '</div>': '', '<p>': '', '</p>': '',})|raw }}</h5><p class="text-small color3 mt-3">{{ honoraire.content|replace({'<div>': '', '</div>': '', '<p>': '', '</p>': '',})|raw }}</p></div></div></div>{% endfor %}</div><div class="row my-5"><div class="col small color2">{{ page.bottomContent|replace({'<div>': '', '</div>': '', '<p>': '', '</p>': '',})|raw }}</div></div></div>{% include '_includes/_contactez-nous.html.twig' %}{% endblock %}