templates/post/index.frame.html.twig line 1

  1. <turbo-frame id="frame_content">
  2.     <div class="example-wrapper">
  3.         <h1>{{ 'Tous les billets'|trans }}</h1>
  4.         <div class="count">
  5.             {{ 'Total trouvĂ©'|trans }}: {{ posts.count }}
  6.         </div>
  7.         {% for post in posts %}
  8.             <hr>
  9.             {{ include('post/includes/_post.html.twig') }}
  10.         {% endfor %}
  11.         <div class="d-flex justify-content-center">
  12.             {{ pagerfanta(posts, 'twitter_bootstrap5', {'omitFirstPage': true}) }}
  13.         </div>
  14.     </div>
  15. </turbo-frame>