{% extends "blog_base.html" %} {% block content %}

{{ posts.title }}

{{ posts.body|safe }}

Updated {{ posts.modified|date:"m/d/y @ h:iA T" }} by {{ posts.owner }}

Categories: {% for x in posts.category.all %}{{ x }} {% endfor %}

Tags: {% for tag in posts.get_tags %} {{ tag }} {% endfor %}


Reddit Digg it! StumbleUpon Delicious!

{% if posts.enable_comments %}
{% load get_setting %} {% get_setting "DJANGO_COMMENTS" "django_comments" %} {% if django_comments %} {% load comments %} {% get_comment_list for posts as post_comments %} {% for comment in post_comments %} {{ comment }} {% endfor %} {% render_comment_form for posts %} {% else %} {% load disqus_tags %} {% disqus_show_comments %} {% endif %} {% endif %}
{% endblock %}