{% extends 'blog/base.html'%} {% block post_block %}
{% if posts %} {% for post in posts %}
{{ post.title}}
By
{{ post.author}}
{{ post.published_date }}
{{post.content | safe }}
Read More
{% endfor %}
{% if posts.has_previous %}
« first
previous
{% endif %}
Page {{ posts.number }} of {{ posts.paginator.num_pages }}.
{% if posts.has_next %}
next
last »
{% endif %}
{% else %}
Sorry!! No post has been found!!!
{% endif %}
{% endblock %}