summaryrefslogtreecommitdiff
path: root/src/pages/tavern.lisp
blob: fdda9e5c9a4af428fe435616e60f8c04a2860b3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
;;;; pages/tavern.lisp -- enter the tavern 

(in-package :dnd)

(defclass/std tavern ()
  ((player)))

(defrender t ((tavern tavern))
  (with-page (:title "A Bustling Tavern")
      (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"))))

        )))