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

{{ heading }}

{% endif %} {% for post in posts.object_list %}

{{ post.title }}


{{ post.body|safe }} {% if post.photo_set %} {% for photo in post.photo_set.all|slice:"3" %} {% endfor %}

Click to see the rest of the gallery

{% endif %}


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

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

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


Reddit Digg it! StumbleUpon Delicious!

{% if post.enable_comments %}
{% load get_setting %} {% get_setting "DJANGO_COMMENTS" "django_comments" %} {% if django_comments %} {% load comments %} {% get_comment_count for post as post_count %} {{ post_count }} Comments {% else %} {% load disqus_tags %} View Comments {% disqus_num_replies %} {% endif %} {% endif %}

{% endfor %} {% endblock %}