{% extends 'base.html' %}
{% load custom_filters %}
{% block title %} My Blog {% endblock %}
{% block body_block %}
{% for blog in user.post_author.all %}
{{ blog.blog_title }}
{{ blog.publish_date }}
{{ blog.blog_content|range_filter|linebreaks }}
Read More