Change pagination from 50 to 10 results per page

Better fit for a curated personal search engine — keeps pages
focused and renders faster over low-bandwidth mesh links.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Derick Phan 2026-03-26 12:03:03 -07:00
parent f2e8dd042a
commit fede0287e9
No known key found for this signature in database

View file

@ -83,7 +83,7 @@ def _error(status):
return _respond(f"<h1>{status}</h1>", status)
PER_PAGE = 50
PER_PAGE = 10
def _paginate(query, key="p"):