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

{{ 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!


{% load disqus_tags %} {% disqus_show_comments %} {% else %}

Sorry, nothing seems to exist here. Please try one of the many other links instead

{% endif %}
{% endblock %}