templates/frontend/content/_list.html.twig line 1

  1. <div class="space-y-6">
  2.     <div class="flex justify-between text-brand-dark">
  3.         <h4 class="font-bold">{{ title}}</h4>
  4.     </div>
  5.     <div class="grid grid-cols-1 gap-8 lg:grid-cols-2">
  6.         {% if list is defined and list|length %}
  7.             {% for item in list %}
  8.                 {{ include('frontend/content/_card.html.twig', {id: item.id, image: item.image, title: item.translate(app.request.locale).title, date: item.createdAt, type: item.type}) }}
  9.             {% endfor %}
  10.         {% endif %}
  11.     </div>
  12. </div>