{% macro render_blog_post(post, from_index=false) %} {% if from_index %}
{% set image = post.attachments.images.first() %}

{% if image %}{% else %}
{% endif %}

{% if from_index %}

{{ post.title }}

{% else %}

{{ post.title }}

{% endif %}

{{ post.abstract }}


{% else %} {{ post.body }} {% endif %} {% endmacro %}