blog/webapp/templates/home.html

9 lines
280 B
HTML
Raw Normal View History

2020-07-08 14:36:13 +02:00
{% extends "layout.html" %}
{% block content %}
2020-07-13 11:54:16 +02:00
{% for instance in blog_post_pagination.items %}
2020-07-13 13:15:09 +02:00
{% include "blog_post/get_single.html" %}
2020-07-13 11:54:16 +02:00
{% endfor %}
{% import "_macros.html" as m %}
{{ m.render_pagination(blog_post_pagination, 'home') }}
2020-07-08 14:36:13 +02:00
{% endblock %}