All the posts under category - {{ category.name }}
{% for post in posts %}{{ post.title|capfirst }}
{% include 'blog/post_info.html' %}
{% empty %}There are not posts under {{ category }}
{% endfor %}{% extends "blog/base.html" %} {% block title %} {{ category|title }} - {{ block.super }} {% endblock %} {% block content %}
{% include 'blog/post_info.html' %}
{% empty %}There are not posts under {{ category }}
{% endfor %}