diff options
author | colin <colin@cicadas.surf> | 2023-03-05 19:10:49 -0800 |
---|---|---|
committer | colin <colin@cicadas.surf> | 2023-03-05 19:10:49 -0800 |
commit | c06de3e0ee54c183fc8bb12c1fb5686694876eae (patch) | |
tree | 6d99f667a50f5481791bd624dfab83a2792f897d /src/pages | |
parent | a366144c49a8a69722a422f401622a76d3076b8e (diff) |
Fix: many little bugs
Diffstat (limited to 'src/pages')
-rw-r--r-- | src/pages/goddess-shrine.lisp | 2 | ||||
-rw-r--r-- | src/pages/tavern.lisp | 11 |
2 files changed, 5 insertions, 8 deletions
diff --git a/src/pages/goddess-shrine.lisp b/src/pages/goddess-shrine.lisp index 3b25e5a..33e8011 100644 --- a/src/pages/goddess-shrine.lisp +++ b/src/pages/goddess-shrine.lisp @@ -6,7 +6,7 @@ (with-page (:title "A Sacred Shrine") (:header (:h1 "Pray and become a hero...")) - (:form :method "POST" :action "/godess-shrine" + (:form :method "POST" :action "/goddess-shrine" (:label :for "NAME" "Enter the epithet by which the ages shall know thy hero:") (:input :name "NAME") (:button :type "submit" "Pray To The Goddess")))) diff --git a/src/pages/tavern.lisp b/src/pages/tavern.lisp index fdda9e5..e6250e1 100644 --- a/src/pages/tavern.lisp +++ b/src/pages/tavern.lisp @@ -10,11 +10,8 @@ (let ((player (player tavern))) (render :details player) (render :list (player-heroes player)) - (:a :href "/spymaster" "Report a Roguish Rumour...") - ;; (:table - ;; (:tr (:td (:h4 "Your Heroes")) - ;; (:td (:h4 "Your Campaigns"))) - ;; (:tr (:td (:h4 "Gossip & Gab")) - ;; (:td (:h4 "Comrades in Arms")))) + (:br) + (:a :href "/goddess-shrine" "Pray a new hero rises.") + (:br) + (:a :href "/spymaster" "Report a Roguish Rumour...")))) - ))) |