12 lines
409 B
HTML
12 lines
409 B
HTML
|
{% extends "base.html" %}
|
||
|
{% import "macros.html" as macro %}
|
||
|
{% block content %}
|
||
|
<div id="cat-header">
|
||
|
<h1>{{ tag.name }}</h1>
|
||
|
<hr />
|
||
|
</div>
|
||
|
|
||
|
{{ macro.listArticles(articles_page.object_list) }}
|
||
|
{{ macro.paginationArt(articles_previous_page, articles_next_page) }}
|
||
|
{% endblock content %}
|