mirror of
https://github.com/abrendan/NochuSearch.git
synced 2025-08-24 21:50:35 +02:00
normal search results pages
This commit is contained in:
@@ -26,6 +26,15 @@
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
<div class="navigation-buttons">
|
||||
{% if page > 1 %}
|
||||
<button onclick="location.href='{{ url_for('search', query=query, page=page-1) }}'" class="search-button navigation-button">❮ Prev</button>
|
||||
{% endif %}
|
||||
|
||||
{% if page < total_pages %}
|
||||
<button onclick="location.href='{{ url_for('search', query=query, page=page+1) }}'" class="search-button navigation-button">Next ❯</button>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
Reference in New Issue
Block a user