From fede0287e91b60f3694f48b8096017781123d1f8 Mon Sep 17 00:00:00 2001 From: Derick Phan Date: Thu, 26 Mar 2026 12:03:03 -0700 Subject: [PATCH] Change pagination from 50 to 10 results per page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handlers.py b/handlers.py index eeb9b29..27ff3d3 100644 --- a/handlers.py +++ b/handlers.py @@ -83,7 +83,7 @@ def _error(status): return _respond(f"

{status}

", status) -PER_PAGE = 50 +PER_PAGE = 10 def _paginate(query, key="p"):