{% extends "blog/base.html" %} {% block title %} {{ category|title }} - {{ block.super }} {% endblock %} {% block content %}

All the posts under category - {{ category.name }}

{% for post in posts %}

{{ post.title|capfirst }}

{% empty %}

There are not posts under {{ category }}

{% endfor %}
{% endblock %}