templates/front/page/event/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base-front.html.twig' %}
  2. {% block title %}Hello HomeController!{% endblock %}
  3. {% block inner_body %}
  4.     <section>
  5.         <div class="container-fluid ">
  6.             <div class="row header-event">
  7.                 <div class="col m-0 d-flex flex-column justify-content-center align-items-center">
  8.                 </div>
  9.             </div>
  10.         </div>        
  11.     </section>
  12.     <section>
  13.         <div class="container">
  14.             <div class="row mb-5 py-5">
  15.                 <div class="col">
  16.                     <h1 class="my-3 underline">Tous les évènements</h1>
  17.                     {% for event in events %}
  18.                         <h2> <a  class="btn btn-primary my-2" role="button" href="{{path('event_show', {'slug': event.slug}) }}">{{ event.title }}</a> </h2>
  19.                     {% endfor %}
  20.                 
  21.                 </div>
  22.             </div>
  23.         </div>
  24.     </section>
  25.     
  26.     
  27. {% endblock %}