Skip to content

Instantly share code, notes, and snippets.

@t0yv0
Created January 21, 2011 13:05
Show Gist options
  • Save t0yv0/789649 to your computer and use it in GitHub Desktop.
Save t0yv0/789649 to your computer and use it in GitHub Desktop.
module Site =
let HomePage =
View.Page "Home" [
Div [Text "Welcome to our website!"]
]
|> Sitelet.Content "/" Home
let AboutUsPage =
View.Page "About Us" [
Div [Text "TODO: describe us."]
]
|> Sitelet.Content "/about" AboutUs
let Main =
Sitelet.Sum [
HomePage
AboutUsPage
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment