Skip to content

Instantly share code, notes, and snippets.

@zc00gii
Created June 3, 2010 05:04
Show Gist options
  • Save zc00gii/423487 to your computer and use it in GitHub Desktop.
Save zc00gii/423487 to your computer and use it in GitHub Desktop.
(define-easy-handler (test-page :uri "/") (entered-text)
(setf (content-type*) "text/html")
(html-string
(:html
(:head
(:title "Hello world!"))
(:body
(:h1 "Foo Bar")
(:p "Text you entered:" (:br)
(str entered-text) (:br)
"Test link:" (:br)
(str thefacepalm-link))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment