{% load tz %} {% load static %} {% for post in posts %}

{{ post.title }}

{% with post.author.userprofile_set.first as userprofile %} {% endwith %} {{ post.author.first_name }} {{ post.author.last_name }} posted in {{ post.category }} | {% localtime on %}{{ post.date | date:"M d, Y" }}{% endlocaltime %}
{{ post.excerpt | safe }}
Continue Reading | {{ post.num_comments }} Comment{% if not post.num_comments == 1 %}s{% endif %} {% comment %} tags {% endcomment %} {% for tag in post.tags.all %} {{ tag.name }} {% endfor %}
{% endfor %}