about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorThel Seraphim <thel.seraphim@gmail.com>2015-03-13 21:14:23 -0700
committerThel Seraphim <thel.seraphim@gmail.com>2015-03-13 21:14:23 -0700
commitbb925b1e7411fa9069b4b0c426e14812c629399f (patch)
treed9bd6d00f550e21f8e051a78654930b42c9c6446 /src
parente7f1120416313b556587fd53a471b5ce96d166a1 (diff)
nothing broken but nothing happening either, now with more css
Diffstat (limited to 'src')
-rw-r--r--src/pronouns/pages.clj4
-rw-r--r--src/pronouns/web.clj5
2 files changed, 8 insertions, 1 deletions
diff --git a/src/pronouns/pages.clj b/src/pronouns/pages.clj
index 3132dbe..73ba2f4 100644
--- a/src/pronouns/pages.clj
+++ b/src/pronouns/pages.clj
@@ -72,7 +72,9 @@
   [subject object possessive-determiner possessive-pronoun reflexive]
   (html
    [:html
-    [:head ""]
+    [:head
+     [:title "Pronoun examples"]
+     [:link {:rel "stylesheet" :href "/pronouns.css"}]]
     [:body
      (examples-block subject object possessive-determiner possessive-pronoun reflexive)
      (about-block)
diff --git a/src/pronouns/web.clj b/src/pronouns/web.clj
index ef6e666..2189038 100644
--- a/src/pronouns/web.clj
+++ b/src/pronouns/web.clj
@@ -28,6 +28,11 @@
         :headers {"Content-Type" "text/html"}
         :body (pages/pronouns (:* params) pronouns-table)})
 
+  (GET "/pronouns.css" {params :params}
+       {:status 200
+       :headers {"Content-Type" "text/css"}
+       :body (slurp (io/resource "pronouns.css"))})
+
   (ANY "*" []
        (route/not-found (slurp (io/resource "404.html")))))