racket/collects/web-server/scribblings/tutorial/examples/test-static.rkt
2010-04-27 16:50:15 -06:00

10 lines
328 B
Racket

#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")