fmartingr.com/templates/blog/list.html
2019-09-27 19:56:51 +02:00

15 lines
419 B
HTML

{% extends "blog/_base.html" %}
{% from "macros/blog.html" import render_blog_post %}
{% from "macros/pagination.html" import render_pagination %}
{% block main_content %}
{% for child in this.pagination.items %}
{{ render_blog_post(child, from_index=true) }}
{% endfor %}
<div class="center">{{ render_pagination(this.pagination) }}</div>
{% endblock %}
{% block endbody %}
{{ super() }}
{% endblock %}