about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Blog.hs6
-rw-r--r--src/Main.hs6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/Blog.hs b/src/Blog.hs
index 61c8bc3f029d..0709dd3a3b2a 100644
--- a/src/Blog.hs
+++ b/src/Blog.hs
@@ -72,12 +72,12 @@ blogTemplate lang t_append body = H.docTypeHtml $ do --add body
             H.a ! A.href (toValue imu) ! A.target "_blank" $ "iMessage"
             "."
 
-renderEntries :: [Entry] -> Int -> String-> Html
-renderEntries entries num topText = H.div ! A.class_ "innerBox" $ do
+renderEntries :: [Entry] -> String-> Html
+renderEntries entries topText = H.div ! A.class_ "innerBox" $ do
     H.div ! A.class_ "innerBoxTop" $ toHtml topText
     H.div ! A.class_ "innerBoxMiddle" $ do
         H.ul $ 
-            sequence_ $ take num $ reverse $ map showEntry entries
+            sequence_ $ reverse $ map showEntry entries
     where
         showEntry :: Entry -> Html
         showEntry e = H.li $ do 
diff --git a/src/Main.hs b/src/Main.hs
index 3c4537597611..60da9946461d 100644
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -64,14 +64,14 @@ tryEntry (Just entry) = toResponse $ blogTemplate eLang eTitle $ renderEntry ent
 
 showIndex :: BlogLang -> ServerPart Response
 showIndex lang = do
-    entries <- getLatest lang []
-    ok $ toResponse $ blogTemplate lang "" $ renderEntries entries 6 (topText lang)
+    entries <- getLatest lang [("limit", toJSON (6 :: Int)), ("descending", toJSON True)]
+    ok $ toResponse $ blogTemplate lang "" $ renderEntries entries (topText lang)
 
 showMonth :: Int -> Int -> BlogLang -> ServerPart Response
 showMonth y m lang = do
     entries <- getLatest lang $ makeQuery startkey endkey
     ok $ toResponse $ blogTemplate lang month 
-        $ renderEntries entries (length entries) month
+        $ renderEntries entries month
   where
     month = getMonth lang y  m
     startkey = JSArray [toJSON y, toJSON m]