{% extends "base.html" %}
{% block content %}
{% if not pagination.next %}
{{ config.description }}
{% endif %}
{% if pagination.next %}
Older posts
{% endif %}
{% if posts %}
{% for post in posts %}
{% if post.type == "note" %}
{% include "partials/summary-note.html" %}
{% else %}
{% include "partials/summary-default.html" %}
{% endif %}
{% endfor %}