summaryrefslogtreecommitdiff
path: root/src/pages/tavern.lisp
diff options
context:
space:
mode:
authorshoshin <shoshin@cicadas.surf>2023-03-13 21:52:18 -0500
committershoshin <shoshin@cicadas.surf>2023-03-13 21:52:18 -0500
commit12662d6a0fceb0c2adfdc4d0947800994bc85718 (patch)
treee57a899b0efedc077587757f8ecb14c2bcecf956 /src/pages/tavern.lisp
parent58afc03ae572eb56cb5a3b7b685689433edc13c7 (diff)
Add: minor tweaks, player list item view in adventure
Diffstat (limited to 'src/pages/tavern.lisp')
-rw-r--r--src/pages/tavern.lisp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/pages/tavern.lisp b/src/pages/tavern.lisp
index 591d424..2fb7498 100644
--- a/src/pages/tavern.lisp
+++ b/src/pages/tavern.lisp
@@ -10,7 +10,7 @@
(let ((player (player tavern)))
(render :details player)
(when (player-heroes player)
- (:h2 "Your Heroes'")
+ (:h2 "Your Heroes:")
(render :list (player-heroes player)))
(:a :href "tavern/adventures" "Adventures for which you are seer.")
(:br)
@@ -24,8 +24,7 @@
(defclass/std tavern-adventures ()
((your-adventures)))
-
(defrender t ((page tavern-adventures))
(with-page (:title "Your Adventures")
- (:h1 "You are seer on teh following adventures")
+ (:h1 "You are seer on the following adventures")
(render :list (your-adventures page))))