{% extends "base_weblog.html" %} {% block title %}Weblog | {{ object.headline|escape }}{% endblock %} {% block main-content %}

{{ object.headline }}

{{ object.body }}

Posted by {{ object.author }} on {{ object.pub_date|date:"F j, Y" }}

{% comment %} {% load comments comment_utils %} {% get_public_free_comment_list for blog.entry object.id as comment_list %}

Comments

{% for comment in comment_list %}

{{ comment.person_name|escape }} {{ comment.submit_date|date:"F j, Y" }} at {{ comment.submit_date|date:"P" }}

{{ comment.comment|escape|urlizetrunc:"40"|linebreaks }}
{% endfor %} {% if object.comments_enabled %}

Post a comment

{% free_comment_form for blog.entry object.id %} {% else %}

Comments are closed

To prevent spam, comments are no longer allowed after sixty days.

{% endif %}
{% endcomment %} {% endblock %}