{% extends "layout.html" %} {% block title %}Blog{% endblock %} {% block body %} {%- for post in posts.page_content %}
{{ post.pub_date.strftime("%b %d, %Y") }}

{{ post.title }}

{% if post.config.has_key('summary') %}
{{ post.config['summary'] }}
{% endif %}
{%- endfor %} {% endblock %}