{% extends 'blog/base.html' %}{% load i18n blog %} {% block title %}{{ block.super }} | {{ category.title }}{% endblock %} {% block content %}
{% include 'blog/components/breadcrumbs.html' %}

{{ category.title }}

{{ category.description }}

{{ category.content }}
    {% for article in category.get_children.specific %} {% include 'blog/components/article.html' %} {% endfor %}
{% endblock %} {% block drawer_content %}
  • {{ category.get_parent.title }}
  • {% for page in category.get_children %}
  • {{ page.title }}
  • {% endfor %} {% endblock %}