racket/collects/web-server/scribblings/tutorial/examples/test-static.rkt
2010-12-07 14:14:50 -07:00

11 lines
353 B
Racket

#lang web-server/insta
(define (start request)
(response/xexpr
'(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")