{% extends "base.html" %} {% block pageclass %} home {% endblock %} {% block pagelabel %}Recent articles{% endblock %} {% block content %} {% for post in posts %}
{{ post.title }} — {{ post.meta.get('summary', post.body[:config.SITE.summary_offset]+'...') }}
{{ date_format(post.meta['date'], '%b %d, %Y').replace(" 0", " ") }}
{% endfor %} {% endblock %}