The Next Big Thing After Rails and Django Will Be Compojure

Since LISP is due for a comeback from the 80s, and it's written by my old housemate from uni.

Sample Code
(defn login-view []
  (html
    [:form {:method "post"}
      "User name: "
        [:input {:name "name", :type "text"}]
        [:br]
      "Password: "
        [:input {:name "password", :type "password"}]
        [:br]
      [:input {:type "submit" :value "Log in"}]]))

You can see more here.