aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper Van der Jeugt2020-08-22 14:50:36 +0200
committerJasper Van der Jeugt2020-08-22 14:50:36 +0200
commit963c135da14cf1be5d09368ab6e19b4907779ac9 (patch)
treecba6d767c0e89d2945b23793cab0840894a64112
parent7f5e0db31447cc612cf469ef07854677f9d25b83 (diff)
Add link to repo
-rw-r--r--server/lib/Uplcg/Views.hs6
1 files changed, 5 insertions, 1 deletions
diff --git a/server/lib/Uplcg/Views.hs b/server/lib/Uplcg/Views.hs
index 9e453e8..c3ef1cc 100644
--- a/server/lib/Uplcg/Views.hs
+++ b/server/lib/Uplcg/Views.hs
@@ -28,7 +28,11 @@ template title body = H.docTypeHtml $ do
H.meta H.! A.name "viewport" H.! A.content "width=device-width"
H.body $ do
body
- H.footer $ "Untitled PL Card Game version " <> H.toHtml version
+ H.footer $ do
+ H.a H.! A.href "https://github.com/jaspervdj/uplcg" $
+ "Untitled PL Card Game"
+ " version "
+ H.toHtml version
rooms :: [RoomView] -> [Deck] -> H.Html
rooms rids decks = template "Untitled PL Card Game" $