Webanwendung mit FastCGI und Haskell
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 line
286B

  1. {-# LANGUAGE OverloadedStrings #-}
  2. module App.Info (
  3. Info(..)
  4. ) where
  5. import Request
  6. import Template
  7. import Network.FastCGI
  8. data Info = Info
  9. instance RequestHandler Info where
  10. handle handler = do
  11. result <- render "info" [("pagetitle", "Info")]
  12. output result