{% extends 'layout.html' %} {% import 'bloggy/macros.html' as blog_macros %} {% block content %}
    {% for post in posts %}
  1. {{ post.title }}

    {{ image(post.main_image) }}
    {{ post.body | md_to_html | first_para }}

    Read more...

    {{ blog_macros.footer(post, tag_labels) }}
  2. {% endfor %}
{% if web_paging_paging_tokens %}

{% if web_paging_previous_path %} Newer posts {% endif %} {% if web_paging_previous_path and web_paging_next_path %} | {% endif %} {% if web_paging_next_path %} Older posts {% endif %}

{% endif %} {% endblock %}