diff options
author | colin <colin@cicadas.surf> | 2023-03-06 20:06:19 -0800 |
---|---|---|
committer | colin <colin@cicadas.surf> | 2023-03-06 20:06:19 -0800 |
commit | eea0da373349349b4d25dd4bc116a9c9eb04fb98 (patch) | |
tree | b54c75e1a4007bfcd538887c0b52cd0ba2c5e4d1 /src/pages | |
parent | 187fce76197031dba1112bd6023b41166f039f3e (diff) |
Add: basic page stub to view an adventure
Diffstat (limited to 'src/pages')
-rw-r--r-- | src/pages/adventure-page.lisp | 8 |
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......"))) |