after-dark/templates/category.html

15 lines
329 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 %}
<h1>{{ category.name }}</h1>
{% for page in category.pages %}
{{ post_macros::page_in_list(page=page) }}
{% endfor %}
{% endblock content %}