Title: Balls get inside
Content: With a lot of pressure
Author: Barbara Streisand
An example with the render tag and some datas declared in the frontmatter of this file.
output
Content: With a lot of pressure
Author: Barbara Streisand
input
{% render 'components/card' with items as item %}
card.liquid
<article>
<h4>{{ item.title }}</h4>
<p>{{ item.content}}</p>
<p>{{ item.author }}</p>
</article>
Frontmatter
items:
title: Balls get inside
content: With a lot of pressure
author: Barbara Streisand