From 95a5b0845394932dee1ef922d00c3c990b16d2c5 Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Thu, 1 Mar 2018 14:43:30 +0100 Subject: [PATCH] Set max quotes displayed to 9 --- pages/quotes/quotes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/quotes/quotes.go b/pages/quotes/quotes.go index e65fa1d5..e7c7ca02 100644 --- a/pages/quotes/quotes.go +++ b/pages/quotes/quotes.go @@ -10,7 +10,7 @@ import ( "github.com/animenotifier/notify.moe/utils" ) -const maxQuotes = 6 +const maxQuotes = 9 // Latest renders the quotes page. func Latest(ctx *aero.Context) string {