{% extends base_template %} {% block title %}Blog{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Blog

{% for entry in entries %}

{{ entry.title }}

{{ entry.created }}{% for user in entry.authors.all %} {{ user.get_full_name }}{% if not forloop.last %}, {% endif %}{% endfor %}

{{ entry.summary_rendered }}
{% endfor %} {% if has_more %}

Older entries

{% endif %} {% endblock %}