after-dark/templates/category.html
Vincent Prouillet d92e1fb705 Add taxonomies
2017-11-16 19:03:41 +01:00

15 lines
329 B
HTML

{% 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 %}