templates/frontend/content/_list.html.twig line 1
<div class="space-y-6">
<div class="flex justify-between text-brand-dark">
<h4 class="font-bold">{{ title}}</h4>
</div>
<div class="grid grid-cols-1 gap-8 lg:grid-cols-2">
{% if list is defined and list|length %}
{% for item in list %}
{{ 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}) }}
{% endfor %}
{% endif %}
</div>
</div>