templates/post/index.frame.html.twig line 1
<turbo-frame id="frame_content">
<div class="example-wrapper">
<h1>{{ 'Tous les billets'|trans }}</h1>
<div class="count">
{{ 'Total trouvé'|trans }}: {{ posts.count }}
</div>
{% for post in posts %}
<hr>
{{ include('post/includes/_post.html.twig') }}
{% endfor %}
<div class="d-flex justify-content-center">
{{ pagerfanta(posts, 'twitter_bootstrap5', {'omitFirstPage': true}) }}
</div>
</div>
</turbo-frame>