Skip to content

Instantly share code, notes, and snippets.

@itsbth
Created December 12, 2014 00:08
Show Gist options
  • Save itsbth/9891391d01826654f826 to your computer and use it in GitHub Desktop.
Save itsbth/9891391d01826654f826 to your computer and use it in GitHub Desktop.
(import [bottle [route run template]])
(with-decorator (route "/")
(defn index []
(apply template ["<h1>Hello, {{subject}}!</h1>"] {"subject" "World"})))
(apply run [] {"host" "0.0.0.0" "port" "8080"})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment