{% macro render_blog_post(post, from_index=false, include_content=true) %} {% set summary = post.body.html.split('') %}

{{ post.title }}

Published on {{ post.pub_date.strftime("%B %d, %Y") }}
{% if include_content %}
{% if not from_index and post.edit_comment %}

Edits

{{ post.edit_comment }}
{% endif %} {% if from_index and summary|length > 1 %} {{ summary[0] }}

Read more »

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