{% extends 'base.html' %} {% block content %}

Posts

Categories

All Posts

{% for post in posts %}

{{ post.title }}

{{ post.body|truncatewords:20 }}

By {{ post.author }} on {{ post.post_date }} Read More
{% endfor %}
{% if not posts %}

No posts available.

{% endif %} {% endblock %}