racket/collects/web-server/scribblings/tutorial/examples/test-static.rkt
2012-10-26 14:46:43 -06:00

11 lines
381 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")