{% extends 'blog/base.html' %}{% load i18n wagtailcore_tags %}
{% block title %}{{ block.super }} | {{ category.title }}{% endblock %}
{% block content %}
{{ category.description }} {% trans 'Published articles will appear here.' %}{{ category.title }}
{% for article in category.get_ordered_children.specific %}
{% include 'blog/components/article.html' %}
{% empty %}
{% include 'blog/components/pagination.html' %}
{% trans 'No articles' %}