after-dark/templates/categories/single.html

15 lines
321 B
HTML
Raw Normal View History

2017-11-16 18:03:32 +00:00
{% extends "index.html" %}
{% import "post_macros.html" as post_macros %}
{% block content %}
{% block header %}
{{ super() }}
{% endblock header %}
2018-07-31 14:21:14 +00:00
<h1>{{ term.name }}</h1>
2017-11-16 18:03:32 +00:00
2018-07-31 14:21:14 +00:00
{% for page in term.pages %}
2017-11-16 18:03:32 +00:00
{{ post_macros::page_in_list(page=page) }}
{% endfor %}
{% endblock content %}