racket/collects/web-server/scribblings/tutorial/examples/test-static.ss
Jay McCarthy 4ebebec089 Adding the tutorial.
svn: r11262
2008-08-14 22:27:57 +00:00

9 lines
327 B
Scheme

#lang web-server/insta
(define (start request)
'(html (head (title "Testing"))
(link ((rel "stylesheet")
(href "/test-static.css")
(type "text/css")))
(body (h1 "This is a header")
(p "This is " (span ((class "hot")) "hot") "."))))
(static-files-path "htdocs")