--- 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 }}

{%- from 'postmeta.macro.njk' import postmeta %} {{ postmeta({ date: post.date, author: post.data.author, content: post.content, center: false }) }}
{% if post.data.image and post.data.image.src != '' %} {{ post.data.image.alt }} {% endif %}

{{ post.data.description }}

Read on {% lucide "chevron-right", { "class": "size-6 md:size-7 xl:size-8" } %}
{% endfor %}