From c06de3e0ee54c183fc8bb12c1fb5686694876eae Mon Sep 17 00:00:00 2001 From: colin Date: Sun, 5 Mar 2023 19:10:49 -0800 Subject: Fix: many little bugs --- src/pages/goddess-shrine.lisp | 2 +- src/pages/tavern.lisp | 11 ++++------- 2 files changed, 5 insertions(+), 8 deletions(-) (limited to 'src/pages') 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...")))) - ))) -- cgit v1.2.3