summaryrefslogtreecommitdiff
path: root/src/Text/Hakyll/Renderable.hs
blob: 4ca6f46afa75cca0cda72953fed2da06b0dd73b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module Text.Hakyll.Renderable
    ( Renderable(toContext, getDependencies, getURL)
    ) where

import System.FilePath (FilePath)
import Text.Template (Context)

-- | A class for datatypes that can be rendered to pages.
class Renderable a where
    -- | Get a context to do substitutions with.
    toContext :: a -> IO Context

    -- | Get the dependencies for the renderable. This is used for cache
    --   invalidation.
    getDependencies :: a -> [FilePath]

    -- | Get the destination for the renderable.
    getURL :: a -> FilePath