diff options
Diffstat (limited to 'src/pronouns/web.clj')
-rw-r--r-- | src/pronouns/web.clj | 5 |
1 files changed, 5 insertions, 0 deletions
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"))))) |