Safe Haskell | None |
---|
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
- applyTemplateList :: Template -> Context a -> [Item a] -> Compiler String
- applyJoinTemplateList :: String -> Template -> Context a -> [Item a] -> Compiler String
- chronological :: MonadMetadata m => [Item a] -> m [Item a]
- recentFirst :: (MonadMetadata m, Functor m) => [Item a] -> m [Item a]
Documentation
applyTemplateList :: Template -> Context a -> [Item a] -> Compiler StringSource
Generate a string of a listing of pages, after applying a template to each page.
applyJoinTemplateList :: String -> Template -> Context a -> [Item a] -> Compiler StringSource
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, Functor m) => [Item a] -> m [Item a]Source
The reverse of chronological