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

{{ topic.title|upper }}

{{ blogs.count }} Article{{ blogs.count|pluralize }}
{% if blogs.count > 0 %}
{% for blog in page_obj %} {% include "cards/blogcard_one.html" %} {% endfor %}
{% if page_obj.has_other_pages %}
{% endif %} {% else %}

No articles found

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

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