diff options
Diffstat (limited to 'Types.hs')
| -rw-r--r-- | Types.hs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -43,6 +43,7 @@ data SiteState = , _assetDir :: FilePath -- ^ Directory for output , _defaultTemplate :: FilePath -- ^ Name of the default template , _redirectTemplate :: FilePath -- ^ Name of the template for redirect pages + , _tagTemplate :: FilePath -- ^ Name of the template for tag listing pages } deriving (Show) @@ -61,6 +62,7 @@ emptySiteState = , _assetDir = "assets" , _defaultTemplate = "default.html" , _redirectTemplate = "redirect.html" + , _tagTemplate = "tag.html" } -- | Monad for running the site generator. |
