{% extends "main/master.html" %} {% block content %}

{{ category.name }}

{% if category.description %}

{{ category.description }}

{% endif %}
{% if posts %} {% for post in posts %}

{{ post.title }}

{{ post.description }}
Read More
{% endfor %} {% else %}
No posts found in this category.
{% endif %}
{% endblock %}