You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
394 B
HTML
18 lines
394 B
HTML
4 years ago
|
{% extends "index.html" %}
|
||
|
|
||
|
{% block title %}{{ config.title }} - {{ config.extra.label_categories }}{% endblock title %}
|
||
|
|
||
|
{% block header %}
|
||
|
<div class="page-header">
|
||
|
<h1>{{ config.extra.label_category }}: {{ term.name }}</h1>
|
||
|
</div>
|
||
|
{% endblock header %}
|
||
|
|
||
|
{% block main %}
|
||
|
<ul>
|
||
|
{% for page in term.pages %}
|
||
|
<li>{{ macro::post_min(page=page) }}</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% endblock main %}
|