Title: The intruder
Content: Got inside the house
Author: Bastien Vacherand
Render tag with the for parameter, using collections for an array of objects.
output
Content: Got inside the house
Author: Bastien Vacherand
Content: Two imprisoned
Author: Stephen King
Content: That's when the fun begins
Author: Mickael Jackson
input
{% render 'components/card-collections' for collections.objects as item %}
card.liquid
<article>
<h4>Title: {{ item.data.title }}</h4>
<p>Content: {{ item.data.content}}</p>
<p>Author: {{ item.data.author }}</p>
</article>
files with "tags: objects"
---
title: The intruder
content: Got inside the house
author: Bastien Vacherand
---