summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-03-30Adapted examples to general style guide.Jasper Van der Jeugt5-39/+55
Because I thought the examples should follow the same style guidelines as the Hakyll code itself, I adapted them to it.
2010-03-30Updated categoryblog example to Hakyll-2.x.Jasper Van der Jeugt4-40/+37
2010-03-29Updated part 7 of the tutorial.Jasper Van der Jeugt1-0/+60
2010-03-27Fixed error causing post lists to be reversed.Jasper Van der Jeugt2-11/+16
This error was caused when rendering post lists produced by readTagMap. I also gave some shorter implementations for functions in Text.Hakyll.HakyllAction.
2010-03-26Fixed error when rendering literate Haskell.Jasper Van der Jeugt2-5/+5
Literate haskell was not listed in the pattern matching on FileType's, so it gave an error that the file type could not be rendered. This was quickly resolved by adding it to the list.
2010-03-26Added `.txt` support, tests update.Jasper Van der Jeugt8-47/+60
- Pure text files are now supported. - We now hide the Internal modules. - Tests should be run through ghci. - Added testing of page reading.
2010-03-24Hakyll site style update.Jasper Van der Jeugt2-14/+14
2010-03-24Added sixth tutorial part.Jasper Van der Jeugt2-2/+224
2010-03-21Updated tagblog example to hakyll-2.xJasper Van der Jeugt3-39/+32
2010-03-18Typo fix by Andrew Antle.Jasper Van der Jeugt2-2/+2
2010-03-15Removed comments from feeds.Jasper Van der Jeugt2-2/+0
2010-03-15Added 5th part of the tutorial.Jasper Van der Jeugt1-0/+84
2010-03-15Migrated rssblog example to feedblog.Jasper Van der Jeugt15-34/+46
2010-03-14Added renderBody function.Jasper Van der Jeugt1-0/+11
2010-03-12Changes String to FilePath on appropriate places.Jasper Van der Jeugt1-2/+2
2010-03-12Wrote fourth part of the tutorials.Jasper Van der Jeugt2-6/+163
2010-03-12Added "Why renderChain" section, fixed some typos.Jasper Van der Jeugt2-2/+10
2010-03-11Added 'The gist of it' sections.Jasper Van der Jeugt2-0/+12
2010-03-11Updated tutorial 3.Jasper Van der Jeugt2-4/+172
2010-03-11Started writing Hakyll 2.x tutorials. Updated brochure example.Jasper Van der Jeugt8-20/+333
2010-03-11Updated some comments.Jasper Van der Jeugt3-13/+11
2010-03-11Gave some functions better (more appropriate) names.Jasper Van der Jeugt8-64/+58
2010-03-11Moved some modules around for fun and profit.Jasper Van der Jeugt14-106/+111
2010-03-10Merged Text.Hakyll.Internal.Render into Text.Hakyll.Render.Jasper Van der Jeugt5-54/+38
2010-03-10Removed xxxWith functions, they can be implemented more elegant using Arrows ↵Jasper Van der Jeugt9-181/+95
anyway.
2010-03-10Renamed RenderAction to HakyllAction.Jasper Van der Jeugt8-86/+86
2010-03-10Added logo.Jasper Van der Jeugt1-0/+85
2010-03-09Fixed some minor issues.Jasper Van der Jeugt2-3/+3
2010-03-09Added Arrow implementation for RenderAction.Jasper Van der Jeugt1-0/+11
2010-03-08Documented Text.Hakyll.Feed.Jasper Van der Jeugt1-11/+24
2010-03-08Added renderAtom, feeds now validate.Jasper Van der Jeugt7-86/+157
2010-03-08Added RSS date for items.Jasper Van der Jeugt2-2/+9
2010-03-08Added Text.Hakyll.Internal.FileType module.Jasper Van der Jeugt4-26/+61
2010-03-08Documented Text.Hakyll.RenderAction.Jasper Van der Jeugt1-26/+48
2010-03-07createCustomPage can automatically infer dependencies.Jasper Van der Jeugt3-19/+31
2010-03-06Documentation++, added copyValue function.Jasper Van der Jeugt4-13/+32
2010-03-06Added RSS module.Jasper Van der Jeugt10-68/+158
2010-03-06Added rebuild mode.Jasper Van der Jeugt1-0/+2
2010-03-05Fixed bug with tag rendering.Jasper Van der Jeugt1-1/+1
2010-03-05Fixed bug in date rendering.Jasper Van der Jeugt1-1/+2
2010-03-05Reintegrated Tag module.Jasper Van der Jeugt3-35/+43
2010-03-05Aliased `RenderAction () Context` to Renderable, custompages now have ↵Jasper Van der Jeugt5-35/+45
correct dependencies.
2010-03-05Removed deprecated code.Jasper Van der Jeugt2-59/+1
2010-03-05Simplified css and static code.Jasper Van der Jeugt3-37/+32
2010-03-05Removes superfluous functions, added some logging.Jasper Van der Jeugt2-29/+5
2010-03-04static and css now both use arrows.Jasper Van der Jeugt1-9/+23
2010-03-04Again an url mistake, now the simpleblog works too.Jasper Van der Jeugt3-7/+6
2010-03-04Fixed url inclusion bug. Brochure example works now.Jasper Van der Jeugt1-4/+6
2010-03-04Got it to compile again, disabled Tags for now.Jasper Van der Jeugt8-157/+124
2010-03-04Work on migration to arrows. Compulation fails.Jasper Van der Jeugt5-31/+20
- Update readPage to produce a Hakyll Context. - Update createPagePath to produce a Context Arrow. - Move Page to internal modules.