hakyll-4.13.0.1: A static website compiler library

Safe HaskellNone
LanguageHaskell2010

Hakyll.Web.Template.List

Description

Provides an easy way to combine several items in a list. The applications are obvious:

  • A post list on a blog
  • An image list in a gallery
  • A sitemap
Synopsis

Documentation

applyTemplateList :: Template -> Context a -> [Item a] -> Compiler String Source #

Generate a string of a listing of pages, after applying a template to each page.

applyJoinTemplateList :: String -> Template -> Context a -> [Item a] -> Compiler String Source #

Join a listing of pages with a string in between, after applying a template to each page.

chronological :: MonadMetadata m => [Item a] -> m [Item a] Source #

Sort pages chronologically. Uses the same method as dateField for extracting the date.

recentFirst :: MonadMetadata m => [Item a] -> m [Item a] Source #

The reverse of chronological

sortChronological :: MonadMetadata m => [Identifier] -> m [Identifier] Source #

Version of chronological which doesn't need the actual items.

sortRecentFirst :: MonadMetadata m => [Identifier] -> m [Identifier] Source #

Version of recentFirst which doesn't need the actual items.