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


{% load disqus_tags %} View Comments {% disqus_num_replies %}

{% endfor %} {% endblock %}