{% macro list_posts(posts, max) %}
{% for post in posts %} {% if loop.index <= max %} {% if loop.index == max %}
{% elif loop.last %}
{% else %}
{% endif %} {% if post.date %}
{{ post.date | date(format=config.extra.date_format | default (value="%d %B %Y")) }}
{% endif %}
{% if post.taxonomies.tags %}
{% for tag in post.taxonomies.tags %} {{ tag }} {% endfor %}
{% endif %}
{% if post.description %} {{ post.description }} {% elif post.summary %} {{ post.summary | safe }}… {% endif %}
Read more →
{% endif %} {% if not loop.last %} {% if loop.index == max %} {% endif %} {% endif %} {% endfor %}
{% endmacro %}