9 lines
273 B
HTML
9 lines
273 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
{% for instance in blog_post_pagination.items %}
|
|
{% include "blog_post/get.html" %}
|
|
{% endfor %}
|
|
{% import "_macros.html" as m %}
|
|
{{ m.render_pagination(blog_post_pagination, 'home') }}
|
|
{% endblock %} |