{% extends "content.html" %}
{% import "post_macros.html" as post_macros %}
{% block title %}Blog - {{ config.title }}{% endblock %}
{% block content %}
{% for page in paginator.pages %}
{{ post_macros::page_in_list(page=page) }}
{% endfor %}
{% endblock content %}