{% extends 'posts/new_base.html' %} {% load paginate %} {% load blog_tags %} {% block blog_content %} {% if tag or date or category %} {% endif %}
{% if blog_posts %} {% paginate 5 blog_posts %} {% for blog in blog_posts %}
{% if blog.featured_image %}
{% endif %}
{{ blog.content|safe|truncatewords_html:50 }}
Posted on Replies 123 Views 123
{% endfor %}
{% show_pages %}
{% else %}

There are no Blog-posts are here !

{% endif %}
{% endblock %} {% block js_script %} {% endblock %}