{% if blog_posts %}
{% for post in blog_posts %}
{% if post.image %} {{ post.title }} {% endif %}

{{ post.date | fmt_date }}{% if post.category %} · {{ post.category }}{% endif %}{% if post.author %} · {{ post.author }}{% endif %}

{% if post.description %}

{{ post.description }}

{% endif %} {{ (config.theme.blog.cta_label if config.theme.blog else None) or "Read more" }} →
{% endfor %}
{% endif %}