You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
350 B
13 lines
350 B
{% extends "layout-2020.html" %} |
|
{% from "macros/pagination.html" import render_pagination %} |
|
{% 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) }} |
|
{% endblock %}
|
|
|