templates/article/item.html.twig line 1

Open in your IDE?
  1. <div class="">
  2.     <div class="row flex-lg-row align-items-center g-5 py-5">
  3.         <div class="col-lg-6">
  4.             <a class="display-5 fw-bold lh-1 mb-3" href="{{ path('article_show', { 'id': article.id }) }}"> {{ article.title }} </a>
  5.             <p class="lead"><p>{{ article.article|striptags }}</p></p>
  6.             <p>{{ article.date|date('d M Y H:i:s') }}</p>
  7.             <div class="d-grid gap-2 d-md-flex justify-content-md-start">
  8.                 <a type="button" class="btn btn-primary btn-lg px-4 me-md-2" href="{{ path('article_show', { 'id': article.id }) }}"> Voir </a>
  9.             </div>
  10.         </div>
  11.     </div>
  12. </div>