about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorThel Seraphim <thel.seraphim@gmail.com>2015-03-14 01:06:59 -0700
committerThel Seraphim <thel.seraphim@gmail.com>2015-03-14 01:06:59 -0700
commit05615d20ed35d4d010c2a806c49ece5bc707c10c (patch)
tree9b67530b9272d9083cf7d60f1cfe6df292b63e72 /src
parent8274656847a6851cb4073abff9554fc24518c234 (diff)
re-organize examples and contact
Diffstat (limited to 'src')
-rw-r--r--src/pronouns/pages.clj20
1 files changed, 13 insertions, 7 deletions
diff --git a/src/pronouns/pages.clj b/src/pronouns/pages.clj
index 3404068..0ba1430 100644
--- a/src/pronouns/pages.clj
+++ b/src/pronouns/pages.clj
@@ -47,18 +47,24 @@
 
 (defn about-block []
   [:div {:class "about"}
-   [:p "Full usage:"]
-   [:p
+   [:p "Full usage: "
     [:tt "http://pronoun.is/subject-pronoun/object-pronoun/possessive-determiner/possessive-pronoun/reflexive"]
-    " displays examples of your pronouns. If we have a good guess we'll let you use just the first one or two."]
-   [:p "Quick examples:"]
-   [:p "My name is Thel Seraphim, my " [:a {:href "http://pronoun.is/she"} "pronoun.is/she"] "."]
-   [:p "My name is Morgan, my " [:a {:href "http://pronoun.is/ze/zir"} "pronoun.is/ze/zir"] "."]])
+    " displays examples of your pronouns."]
+   [:p "This is a bit unwieldy. If we have a good guess we'll let you use just the first one or two."]])
 
 (defn contact-block []
   (let [twitter-name (fn [handle] [:a {:href (str "https://www.twitter.com/" handle)} (str "@" handle)])]
   [:div {:class "contact"}
-   [:p "Written by " (twitter-name "morganastra") " and " (twitter-name "thelseraphim") ". "
+   [:p
+    "Written by "
+    (twitter-name "morganastra")
+    ", whose "
+    [:a {:href "http://pronoun.is/ze/zir"} "pronoun.is/ze/zir"]
+    " and "
+    (twitter-name "thelseraphim")
+    ", whose "
+    [:a {:href "http://pronoun.is/she"} "pronoun.is/she"]
+    ". "
    "Visit the project on " [:a {:href "https://github.com/witch-house/pronoun.is"} "github!"]]]))