templates/main/films.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Films - CinéDevRT{% endblock %}
  3. {% block body %}
  4.     <main>
  5.         <section id="onDisplay">
  6.             <div> <h2> Films à l'affiche </h2> </div>
  7.             <section>
  8.                 {% for movie in movies %}
  9.                     <div>
  10.                         <div> <img src="{{ asset('uploads/' ~ movie.file) }}"> </div>
  11.                         <div>  
  12.                             <h3> {{ movie.title }} </h3>
  13.                             <div>
  14.                                 <div> <strong> Durée : </strong> 2h </div>
  15.                                 <div> <strong> Genres : </strong> Fantaisie, Action </div>
  16.                                 <div> <strong> Réalisateurs : </strong> {{ movie.realisedBy }} </div>
  17.                             </div>
  18.                             <a href="{{ path('filmsShow', {id: movie.id}) }}"> Séances </a>
  19.                         </div>
  20.                     </div>
  21.                 {% endfor %}
  22.             </section>
  23.         </section>
  24.     </main>
  25.     
  26. {% endblock %}