--- layout: postlist.njk title: Posts eleventyNavigation: key: posts order: 3 pagination: data: collections.posts size: 10 alias: blogposts reverse: true --- {% for post in blogposts %}

{{ post.data.title }}

{% if post.data.image and post.data.image.src != '' %} {{ post.data.image.alt }} {% endif %}

{{ post.data.description }}

Read on {% lucide "chevron-right", {"size":"20"} %}
{% endfor %}