{% extends "base.html" %} {% load static %} {% block content %} {{ category.title }} Blogs

{{ category.title|upper }}

{{ blogs.count }} Articles
{% if blogs %}
{% for blog in page_obj %} {% include "cards/blogcard_one.html" %} {% endfor %}
{% if page_obj.has_other_pages %}
{% endif %} {% else %}

No blogs available

There are currently no blogs published in the {{ category.title }} category.

Return to Home
{% endif %}
{% endblock %}