aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/bookmarks.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/templates/bookmarks.html')
-rw-r--r--src/web/templates/bookmarks.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/web/templates/bookmarks.html b/src/web/templates/bookmarks.html
index 96f38d26..39528322 100644
--- a/src/web/templates/bookmarks.html
+++ b/src/web/templates/bookmarks.html
@@ -1,6 +1,8 @@
{% extends "layout.html" %}
{% block content %}
<div class="container">
+ {{ pagination.info }}
+ {{ pagination.links }}
<ul class="list-group">
{% for bookmark in bookmarks %}
<li class="list-group-item">
@@ -19,5 +21,6 @@
</li>
{% endfor %}
</ul>
+ {{ pagination.links }}
</div><!-- /.container -->
{% endblock %}
bgstack15