summaryrefslogtreecommitdiff
path: root/Utility/Yesod.hs
blob: 05f684490ada7c2415cd84856c5173bb33244d04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{- Yesod stuff
 -
 - Copyright 2012 Joey Hess <joey@kitenet.net>
 -
 - Licensed under the GNU GPL version 3 or higher.
 -}

module Utility.Yesod where

import System.FilePath

{- Filename of a template, in the templates/ directory. -}
template :: FilePath -> FilePath
template f = "templates" </> f

{- A hamlet template file. -}
hamletTemplate :: FilePath -> FilePath
hamletTemplate f = template f ++ ".hamlet"