{% extends 'main/base.html' %} {% block title %} Blog Lists {% endblock %} {% load post_tags %} {% block content %} {% include 'main/utils/navbar.html' %}
{% for post in posts %}

{{post.title}}

Posted on {{post.created_at}} By {{post.author}}
{{post.body_text|short_description}}
{% endfor %}
{% include 'posts/utils/categories-card.html' %}
{% endblock %}