Pagination has been added so that the amount of items on each page is a reasonable amount.
20 lines
554 B
HTML
20 lines
554 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block nav %}
|
|
<a class="btn btn-primary" href="{{ url_for("comics.search") }}" style="position: fixed; margin: 5px; right: 10px">Search</a>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div style="text-align: center">
|
|
{% include "pagination.html" %}
|
|
</div>
|
|
<div class="container col-7">
|
|
<div class="row justify-content-start">
|
|
{% include "comics/publisherList.html" %}
|
|
</div>
|
|
</div>
|
|
<div style="text-align: center">
|
|
{% include "pagination.html" %}
|
|
</div>
|
|
{% endblock %}
|