{% extends "layout.html" %} {% from "macros/blog.html" import render_blog_post_summary %} {% from "macros/pagination.html" import render_pagination %} {% block title %}{{ this.title }}{% endblock %} {% block page_header %} {% include 'includes/banner-blog.html' %} {% endblock %} {% block content %}
{% for child in this.pagination.items %} {{ render_blog_post_summary(child, from_index=true) }} {% endfor %} {{ render_pagination(this.pagination) }}
{% endblock %}