{% extends 'blog/base.html' %} {% load staticfiles %} {% block head %} {% endblock head %} {% block body %}


Add new post

{% if posts %} {% for post in posts %}

posted by {{ post.author }}
{{ post.timestamp|date:"g:i A, d M, y" }}


{{ post.title }}

{{ post.content }}

Comments {{ post.comment_set.count }}

{% endfor %} {% endif %} {% endblock %}