elm/Examples/elm-yesod/elm_source/index.elm
Evan Czaplicki b4fa5c200d Fix colors
2012-06-25 06:56:23 -05:00

35 lines
1.5 KiB
Elm

title w = size w 60 . box 4 . text . header . toText $ "Elm-Yesod"
lightGrey = rgb 240 241 244
mediumGrey = rgb 216 221 225
heading outer inner =
color mediumGrey . size outer 61 . box 1 .
color lightGrey . size outer 60 . box 5 .
size inner 60 . box 5 $ title inner
skeleton body outer =
let inner = if outer < 820 then outer - 20 else 800 in
flow down [ heading outer inner
, body outer inner
]
----------------------
section = text . bold . Text.height (5/4) . toText
info w = List.map (\f -> f ()) . List.intersperse (\x -> plainText "&nbsp;") . List.map ((\e x -> e) . width w) $
[ section "Written in Elm, served with Yesod"
, text $ toText "This page is written in " ++ link "http://elm-lang.org/" (toText "Elm") ++
toText " and served using the " ++
link "http://yesodweb.com/" (toText "Yesod Web Framework") ++
toText ". Since you are looking at this page it is safe to assume that you already have the example code. "
, text $ toText "Type-safe URLs are rendered using simple QuasiQuoter variable interpolation."
, section "More examples:"
, text $ toText "- " ++ link "@{MouseR}" (toText "A simple mouse input example")
, text $ toText "- " ++ link "@{ClockR}" (toText "An animated analog clock")
, text $ toText "- " ++ link "@{ShapesR}" (toText "Some simple rendered shapes")
]
body outer inner = width outer . box 2 . flow down . (:) (plainText "&nbsp;") $ info inner
main = lift (skeleton body) Window.width