{% extends 'blog/base.html' %}{% load i18n wagtailcore_tags %} {% 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_ordered_children.specific %} {% include 'blog/components/article.html' %} {% empty %}
  1. {% trans 'No articles' %}

    {% trans 'Published articles will appear here.' %}

  2. {% endfor %}
{% include 'blog/components/pagination.html' %}
{% endblock %} {% block drawer_content %}
  • {{ category.get_parent.title }}
  • {% for page in category.get_ordered_children %}
  • {{ page.title }}
  • {% endfor %} {% endblock %}