summaryrefslogtreecommitdiff
path: root/src/pages/adventure-page.lisp
diff options
context:
space:
mode:
authorcolin <colin@cicadas.surf>2023-03-06 20:06:19 -0800
committercolin <colin@cicadas.surf>2023-03-06 20:06:19 -0800
commiteea0da373349349b4d25dd4bc116a9c9eb04fb98 (patch)
treeb54c75e1a4007bfcd538887c0b52cd0ba2c5e4d1 /src/pages/adventure-page.lisp
parent187fce76197031dba1112bd6023b41166f039f3e (diff)
Add: basic page stub to view an adventure
Diffstat (limited to 'src/pages/adventure-page.lisp')
-rw-r--r--src/pages/adventure-page.lisp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/pages/adventure-page.lisp b/src/pages/adventure-page.lisp
new file mode 100644
index 0000000..fd9cb09
--- /dev/null
+++ b/src/pages/adventure-page.lisp
@@ -0,0 +1,8 @@
+;;;; adventure-page.lisp -- shows a particular adventure
+
+(in-package :dnd)
+
+(defrender :page ((adventure adventure))
+ (with-page (:title (title adventure))
+ (:h1 (title adventure))
+ (:p "uhh......")))