{% extends 'front/layout/front.html.twig' %}
{% block title %}{{ page.title }}{% endblock %}
{% block pageContent %}
<main class="my-5">
<div class="container">
<section class="text-center">
<h2 class="mb-3">
<strong>{{ page.title }}</strong>
</h2>
<h4 class="mb-3">
{{ page.subtitle }}
</h3>
</section>
<section>
{{ page.content|raw }}
</section>
{% if page.slug == 'ecoles' %}
{{ render(controller(
'App\\Controller\\ActivityController::displayActivities'
)) }}
{% endif %}
{# {{ dump(app.request) }} #}
{# {% if %}
<hr>
{% endif %} #}
</div>
</main>
{% endblock %}