{% load tz %} {% load static %} {% for post in posts %} {% comment %} This is the plain small version for search list {% endcomment %}

{{ post.title }}

Posted by {{ post.author.first_name }} {{ post.author.last_name }} in {{ post.category }} on {% localtime on %}{{ post.date | date:"M d, Y" }}{% endlocaltime %}

{{ post.body|truncatewords:150|safe }}

Tags: {% for tag in post.tags.all %} {{ tag.name }} {% endfor %}

Read complete post...


{% endfor %}