Updated a lot of stuff

This commit is contained in:
2024-10-14 15:08:30 +01:00
parent 8c036a5a43
commit 915febb352
16 changed files with 255 additions and 887 deletions

View File

@@ -0,0 +1,9 @@
<div id="pagination">
{% if quotes.has_prev %}
<a href="{{ url_for('browse', page=quotes.prev_num) }}">&laquo; Previous</a>
{% endif %}
Page {{ quotes.page }} of {{ quotes.pages }}
{% if quotes.has_next %}
<a href="{{ url_for('browse', page=quotes.next_num) }}">Next &raquo;</a>
{% endif %}
</div>