From 54c04f85adb6938ef9ef27b5d7a1ab592fb30461 Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Tue, 17 Feb 2009 20:51:27 +0100 Subject: =?UTF-8?q?Initial=20=E2=80=9Chello=20world=E2=80=9D=20commit.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cljssss-g.clj | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 cljssss-g.clj diff --git a/cljssss-g.clj b/cljssss-g.clj new file mode 100644 index 0000000..6987a56 --- /dev/null +++ b/cljssss-g.clj @@ -0,0 +1,19 @@ +(ns cljssss-g + (require [net.cgrand.enlive-html :as enlive] + [clojure.xml :as xml] + compojure) + (use compojure)) + +(defservlet cljssss-g + (GET "/" + (html [:html + [:head + [:title "Gödel-Gentzen Clojure Syndication Services Super System"]] + [:body + [:h1 "Gödel-Gentzen Clojure Syndication Services Super System"] + [:p "Fnord."]]])) + (ANY "*" + (page-not-found))) + +(run-server {:port 8080} + "/*" cljssss-g) -- cgit v1.2.3