packages feed

scotty-hastache-0.2.0: examples/hastachetest.hs

{-# LANGUAGE OverloadedStrings #-}
-- http://orbt.io/QHBm.png
module Main where

import Text.Hastache
import Web.Scotty.Trans as S
import Web.Scotty.Hastache

main :: IO ()
main = scottyH' 3000 $ do
  setTemplatesDir "templates"

  get "/:word" $ do
    beam <- param "word"
    setH "action" $ MuVariable (beam :: String)
    hastache "greet.html"