2021-01-28 22:17:05 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% import "macros.html" as macro %}
|
|
|
|
{% block content %}
|
|
|
|
<div id="cat-header">
|
|
|
|
<h1>{{ category.name }}</h1>
|
|
|
|
<hr />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ macro.listArticles(articles_page.object_list) }}
|
2021-01-31 12:09:36 +01:00
|
|
|
{{ macro.paginationArt(articles_previous_page, articles_next_page) }}
|
2021-01-28 22:17:05 +01:00
|
|
|
{% endblock content %}
|