{% extends base_template %} {% block content %}

Recent {{category_name}} posts

{% for post in recent_posts %}

{{ post.title }}

Posted by {{ post.author.first_name }} {{ post.author.last_name }} on {{ post.created }} {% for category in post.categories %} {{category.name}} {% endfor %}

{{ post.summary }}


{% endfor %} {% endblock %}