mirror of
https://github.com/torproject/newsletter.git
synced 2025-02-16 23:48:40 +00:00
12 lines
367 B
HTML
12 lines
367 B
HTML
{% extends "layout.html" %}
|
|
{% from "macros/archive.html" import render_post %}
|
|
{% from "macros/pagination.html" import render_pagination %}
|
|
{% block title %}{{ this.title }}{% endblock %}
|
|
{% block body %}
|
|
{% for child in this.pagination.items %}
|
|
{{ render_post(child, from_index=true) }}
|
|
{% endfor %}
|
|
|
|
{{ render_pagination(this.pagination) }}
|
|
{% endblock %}
|