{% extends "site.html" %}
{% import "post_macros.html" as post_macros %}
{% block body %}
Category: {{ term.name | title }}
{% for page in term.pages %}
{{ post_macros::page_in_list(page=page) }}
{% endfor %}
{% endblock body %}
{% block page_footer %}
{% endblock page_footer %}