aboutsummaryrefslogtreecommitdiffhomepage
path: root/about.lisp
diff options
context:
space:
mode:
authorColin Okay <colin@cicadas.surf>2022-11-11 14:01:38 -0600
committerColin Okay <colin@cicadas.surf>2022-11-11 14:01:38 -0600
commit85a9bd9012e23ed65f1a84938e0e9268b5cc1bd5 (patch)
tree229d3ae9f533fe3af4ce8f90436ba3f7f2ed29b7 /about.lisp
parentd1aa627008dc68c1c6120225e7f0e7f9530273ec (diff)
Add: about page. css tweaks
Diffstat (limited to 'about.lisp')
-rw-r--r--about.lisp23
1 files changed, 23 insertions, 0 deletions
diff --git a/about.lisp b/about.lisp
new file mode 100644
index 0000000..1eb42aa
--- /dev/null
+++ b/about.lisp
@@ -0,0 +1,23 @@
+;;;; about.lisp -- an about page.
+
+(in-package :vampire)
+
+(defun about-page (body)
+ (include-style body)
+ (with-clog-create body
+ (div ()
+ (navigation-header ())
+ (div (:class "centered-column")
+ (div ())
+ (div ()
+ (p ( :content "Vampire is a small private app shared
+ between friends. Its purpose is to create and share audio playlists,
+ and to collaborate on playlists with your friends in real time."))
+ (p ( :content "The app is called vampire because it sucks
+ content from other sources, backed by the popular
+ youtube-dl tool."))
+
+ (p ( :content "Vampire is written in Common Lisp using the
+ CLOG system."))
+ (p ( :content "I hope you enjoy using Vampire.")))
+ (div ())))))