{% if blog_posts %}
{% for post in blog_posts %}

{{ post.title }}

Published on {{ post.date | fmt_date }} {%- if post.category %} — in {{ post.category }}{% endif %} {%- if post.author %} — by {%- if post.avatar_url %} {{ post.author }}{% endif %} {{ post.author }} {%- endif %}

{% if post.image %} {{ post.title }} {% endif %} {% if post.description %}

{{ post.description }}

{% endif %} {{ (config.theme.blog.cta_label if config.theme.blog else None) or "Continue Reading" }} …
{% endfor %}
{% endif %}