diff options
author | Morgan Astra <m@morganastra.me> | 2018-11-14 22:22:15 -0800 |
---|---|---|
committer | Morgan Astra <m@morganastra.me> | 2018-11-14 22:22:15 -0800 |
commit | 8238eb6e0cbf71db6f2efe86ed4942253ebab9b6 (patch) | |
tree | 52d65a52b0c655c6eb8d29b6b5bfe51fb66254fa /src/pronouns/web.clj | |
parent | 8628d9705526e91664886e6b2588d4972716a8a5 (diff) |
Add all-pronouns page
Diffstat (limited to 'src/pronouns/web.clj')
-rw-r--r-- | src/pronouns/web.clj | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pronouns/web.clj b/src/pronouns/web.clj index 15057c2..ab887d0 100644 --- a/src/pronouns/web.clj +++ b/src/pronouns/web.clj @@ -39,6 +39,12 @@ :headers {"Content-Type" "text/html"} :body (pages/front)}) + (GET "/all-pronouns" [] + {:status 200 + :headers {"Content-Type" "text/html"} + :body (pages/all-pronouns)}) + + (GET "/pronouns.css" [] {:status 200 :headers {"Content-Type" "text/css"} |