src/Flexy/FrontBundle/Themes/CoWorking/templates/pages/_sorted_results.html.twig line 1

  1. {% for news in news %}
  2.     
  3.                     <article class="card shadow-custom mt-4">
  4.                         <div class="row g-0">
  5.                             <div class="col-lg-5">
  6.                                 <img class="img-article img-fluid" 
  7.                                      src="/uploads/coworking/{{ news.image }}"
  8.                                      alt="image">
  9.                             </div>
  10.                             <div class="col-lg-7 col-md-12 " >
  11.                                 <p class="mt-2" style="font-size:13px;font-weight: 600;">le {{ news.dateDebut|date('d M Y')|default('Aucune date') }}</p>
  12.                                 <h3>  {{ news.title }}  </h3>
  13.                                 <h2 class="title-article"> {{ news.underTitle }}</h2>
  14.                                 <p style="font-size: 15px;width:95%;">{{ news.description|slice(0, 110) ~ '...' }}</p>
  15.                                 <a href="{{path('actualite',{id:news.id})}}" class="lire-suite">Lire Plus <i style="font-size:18px" class="fa fa-play-circle" aria-hidden="true"></i></a>
  16.                                 
  17.                             </div>
  18.                         </div>
  19.                     </article>
  20.                   
  21.                     {% else %}
  22.     <p>Aucune actualitĂ© trouvĂ©e.</p>
  23. {% endfor %}
  24.   {% if news is not null %}
  25.         <div class="pagination">
  26.     {{ knp_pagination_render(news) }}
  27. </div>
  28.     {% endif %}