{% extends "blog/base_blog.html" %} {% block title %}{{ object.title }}{% endblock %} {% block body_id %}post_detail_page{% endblock %} {% block content_title %}

{{ object.title }}

{% endblock %} {% block content %} {% load blog markup comments tagging_tags %}

{{ object.publish|date:"j F Y" }}

{{ object.body|markdown|render_inlines }}
{% tags_for_object object as tag_list %} {% if tag_list %}

Related tags: {% for tag in tag_list %} {{ tag }}{% if not forloop.last %}, {% endif %} {% endfor %}

{% endif %} {% get_free_comment_list for blog.post object.id as comment_list %} {% if comment_list %}

Comments

{% for comment in comment_list %} {% if comment.is_public %}
{{ forloop.counter }} {% if comment.person_url %}{{ comment.person_name }} says...{% else %}{{ comment.person_name }} says...{% endif %}
{{ comment.comment|urlizetrunc:"60"|markdown }}

Posted at {{ comment.submit_date|date:"P" }} on {{ comment.submit_date|date:"F j, Y" }}

{% endif %} {% endfor %}
{% endif %} {% if object.allow_comments %} {% free_comment_form for blog.post object.id %} {% else %}

Comments are closed.

Comments have been close for this post.

{% endif %} {% endblock %}