sorted articles by date

This commit is contained in:
2024-09-23 22:48:38 -07:00
parent be1835b212
commit ff552f44b1
3 changed files with 11 additions and 12 deletions
+9 -10
View File
@@ -31,18 +31,10 @@ main = hakyllWith config $ do
route idRoute route idRoute
compile compressCssCompiler compile compressCssCompiler
match ("posts/*" .||. "publications/*") $ do
route $ setExtension "html"
compile $
pandocCompiler
>>= loadAndApplyTemplate "templates/post.html" postCtx
>>= loadAndApplyTemplate "templates/default.html" postCtx
>>= relativizeUrls
match "index.html" $ do match "index.html" $ do
route idRoute route idRoute
compile $ do compile $ do
posts <- loadAll "posts/*" posts <- recentFirst =<< loadAll "posts/*"
pubs <- recentFirst =<< loadAll "publications/*" pubs <- recentFirst =<< loadAll "publications/*"
let indexCtx = listField "publications" postCtx (return pubs) <> listField "posts" postCtx (return posts) `mappend` defaultContext let indexCtx = listField "publications" postCtx (return pubs) <> listField "posts" postCtx (return posts) `mappend` defaultContext
@@ -52,6 +44,13 @@ main = hakyllWith config $ do
>>= loadAndApplyTemplate "templates/default.html" indexCtx >>= loadAndApplyTemplate "templates/default.html" indexCtx
>>= relativizeUrls >>= relativizeUrls
match ("posts/*" .||. "publications/*") $ do
route $ setExtension "html"
compile $
pandocCompiler
>>= loadAndApplyTemplate "templates/post.html" postCtx
>>= relativizeUrls
match "gallery.html" $ do match "gallery.html" $ do
route idRoute route idRoute
compile $ do compile $ do
@@ -73,4 +72,4 @@ main = hakyllWith config $ do
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
postCtx :: Context String postCtx :: Context String
postCtx = modificationTimeField "modded" "%B %e, %Y" `mappend` defaultContext postCtx = mconcat [modificationTimeField "modded" "%B %e, %Y", dateField "parsed-date" "%B %e, %Y", defaultContext]
+1 -1
View File
@@ -2,7 +2,7 @@
$if(posts)$ $if(posts)$
$for(posts)$ $for(posts)$
<li> <li>
<a href="$url$">$title$</a> - $modded$ <a href="$url$">$title$</a> - $parsed-date$
</li> </li>
$endfor$ $endfor$
$endif$ $endif$
+1 -1
View File
@@ -2,7 +2,7 @@
$if(publications)$ $if(publications)$
$for(publications)$ $for(publications)$
<li> <li>
<a href="$url$">$title$</a> - $published$ <a href="$url$">$title$</a> - $parsed-date$
</li> </li>
$endfor$ $endfor$
$endif$ $endif$