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

{{ post.title }}

Published on {{ post.pub_date }}
{% if from_index and summary|length > 1 %} {{ summary[0] }}

Read more »

{% else %} {{ post.body }} {% endif %}
{% if not from_index and post.edit_comment %}

Edits

{{ post.edit_comment }} {% endif %}
{% endmacro %} {% macro render_gallery(post) %}

Gallery

{% for attachment in post.children.get("gallery").attachments.order_by("_id") %} {% if loop.index is divisibleby(3) %}
{% endif %} {% endfor %}

{% endmacro %}