-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Support for using Heist templates in Happstack -- -- Happstack is a web application framework. Heist is an XML templating -- solution. This package makes it easy to use Heist templates with -- Happstack. @package happstack-heist @version 7.0.2 -- | functions for using Heist with Happstack -- -- See the Heist Section of the Happstack Crash Course for detailed -- documentation: -- -- http://happstack.com/docs/crashcourse/Templates.html#helloheist module Happstack.Server.Heist -- | force a reload of the templates from disk templateReloader :: (MonadIO m, MonadIO n) => TemplateDirectory m -> n Response -- | serve the heist templates from the 'TemplateDirectory m' templateServe :: (ServerMonad m, MonadPlus m, MonadIO m) => TemplateDirectory m -> m Response -- | render the specified template render :: (MonadPlus m, MonadIO m) => TemplateDirectory m -> ByteString -> m Response