8 lines
229 B
HTML
8 lines
229 B
HTML
{% extends "base.html" %}
|
|
{% import "macros.html" as macro %}
|
|
{% block content %}
|
|
|
|
{{ macro.listArticles(articles_page.object_list) }}
|
|
{{ macro.paginationArt(articles_previous_page, articles_next_page) }}
|
|
|
|
{% endblock content %}
|