13 lines
350 B
HTML
13 lines
350 B
HTML
{% 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 %}
|