{% extends "base_blog.html" %}
{% block title %}{{ block.super }} | Entries in "{{ object.name|escape }}"{% endblock %}
{% block content %}
{% for entry in object.live_entries %}
{{ entry.body|truncatewords_html:"20"|safe }}
Permalink
{% endfor %}
{% endblock %}