We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01a2cf0 commit af8c39aCopy full SHA for af8c39a
1 file changed
src/App/templates/app/index.html.twig
@@ -643,12 +643,13 @@
643
</div>
644
</section>
645
646
+ {% if posts is defined and posts is iterable %}
647
<section class="py-5">
648
<div class="container">
649
<h4 class="text-center py-2">Blog</h4>
650
<h2 class="mb-4 text-center pb-2">Useful Reads</h2>
651
<div class="row g-4">
- {% for post in posts %}
652
+ {% for post in posts %}
653
<div class="col-md-4">
654
<div class="card h-100 border-0 shadow-sm rounded-3">
655
<div class="card-body d-flex flex-column p-4">
@@ -678,6 +679,7 @@
678
679
680
681
682
+ {% endif %}
683
684
685
0 commit comments