fmartingr.com/templates/blog-list.html

16 lines
404 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>{{ render_pagination(this.pagination) }}</div>
{% endblock %}
{% block endbody %}
{{ super() }}
{% endblock %}