templates/page/show.html.twig line 1

Open in your IDE?
  1. {% extends 'front/layout/front.html.twig' %}
  2. {% block title %}{{ page.title }}{% endblock %}
  3. {% block pageContent %}
  4.     <main class="my-5">
  5.         <div class="container">
  6.             <section class="text-center">
  7.                 <h2 class="mb-3">
  8.                     <strong>{{ page.title }}</strong>
  9.                 </h2>
  10.                 <h4 class="mb-3">
  11.                     {{ page.subtitle }}
  12.                 </h3>
  13.             </section>
  14.             <section>
  15.                 {{ page.content|raw }}
  16.             </section>
  17.             {% if page.slug == 'ecoles' %}    
  18.                 {{ render(controller(
  19.                     'App\\Controller\\ActivityController::displayActivities'
  20.                 )) }}
  21.             {% endif %}
  22.             {# {{ dump(app.request) }} #}
  23.             {# {% if  %}
  24.                 <hr> 
  25.             {% endif %} #}
  26.         </div>
  27.     </main>
  28. {% endblock %}