{% extends 'base.html' %} {% load custom_filters %} {% block title %} Home {% endblock %} {% block body_block %} {% for blog in blogs %}

{{ blog.blog_title }}

{{ blog.publish_date }}
{{ blog.blog_title }}

{{ blog.blog_content|range_filter|linebreaks }} Read More

Posted By: {{ blog.author }}
{{ blog.liked_blog.count }} Likes | {{ blog.blog_comment.count }} Comments
{% endfor %} {% endblock %}