From 788aba3d0d0bc98c0164f87cf3a4941cf4587a54 Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Sat, 14 May 2022 21:30:18 -0600 Subject: Fix new index page --- srv/src/api/render.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'srv/src/api/render.go') diff --git a/srv/src/api/render.go b/srv/src/api/render.go index 6359505..cacdb26 100644 --- a/srv/src/api/render.go +++ b/srv/src/api/render.go @@ -42,7 +42,7 @@ func mustParseTpl(name string) *template.Template { func (a *api) renderIndexHandler() http.Handler { tpl := mustParseTpl("index.html") - const pageCount = 20 + const pageCount = 10 return http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) { -- cgit v1.2.3