about summary refs log tree commit diff
path: root/src/Main.hs
diff options
context:
space:
mode:
authorVincent Ambo <viam@humac.com>2012-03-03T03·05+0100
committerVincent Ambo <viam@humac.com>2012-03-03T03·05+0100
commit485e27147574106d5925ea9ab880739d8e1c4f6e (patch)
tree32dde7e271541a368cb5b809831c855276131843 /src/Main.hs
parent7114876693cf5b2ce9ac4b7d7c5121aba4be94e2 (diff)
* added TODO file
Diffstat (limited to 'src/Main.hs')
-rw-r--r--src/Main.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Main.hs b/src/Main.hs
index 60da9946461d..debf02e3cc18 100644
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -64,7 +64,7 @@ tryEntry (Just entry) = toResponse $ blogTemplate eLang eTitle $ renderEntry ent
 
 showIndex :: BlogLang -> ServerPart Response
 showIndex lang = do
-    entries <- getLatest lang [("limit", toJSON (6 :: Int)), ("descending", toJSON True)]
+    entries <- getLatest lang [("limit", toJSON (7 :: Int)), ("descending", toJSON True)]
     ok $ toResponse $ blogTemplate lang "" $ renderEntries entries (topText lang)
 
 showMonth :: Int -> Int -> BlogLang -> ServerPart Response