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

{{post.title}}

Posted on {{post.created_at}} by {{post.author}}
{% if post.categories.all %} {% for categories in post.categories.all %} {{categories}} {% endfor %} {% endif %} {% if post.img|is_exists %} {% endif %}
{{post.body_text|safe}}
Recent Posts
    {% recent_posts as recent %} {% for new_post in recent %}
  • {{new_post}}
  • {% endfor %}
{% include 'posts/utils/categories-card.html' %}
{% endblock %}