ungleich-staticcms/templates/comics.html

14 lines
350 B
HTML
Raw Permalink Normal View History

2020-02-05 11:32:31 +00:00
{% extends "layout-2020.html" %}
{% from "macros/pagination.html" import render_pagination %}
2020-02-05 12:44:56 +00:00
{% from "macros/comic.html" import render_comic %}
{% block title %}Penguin Comics{% endblock %}
{% block content %}
{% for child in this.pagination.items %}
{{ render_comic(child) }}
{% endfor %}
{{ render_pagination(this.pagination) }}
2020-02-05 11:32:31 +00:00
{% endblock %}