diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2022-05-14 21:30:18 -0600 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2022-05-14 21:35:53 -0600 |
commit | 788aba3d0d0bc98c0164f87cf3a4941cf4587a54 (patch) | |
tree | 789ea80de8041352a5e2ecda01334b1bbfc3ddbc /srv/src/api/render.go | |
parent | af08122a253916c9f7d923b6a0197db1cbbf536e (diff) |
Fix new index page
Diffstat (limited to 'srv/src/api/render.go')
-rw-r--r-- | srv/src/api/render.go | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |