diff options
-rw-r--r-- | style.lisp | 8 | ||||
-rw-r--r-- | vampire.asd | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/style.lisp b/style.lisp new file mode 100644 index 0000000..68d754d --- /dev/null +++ b/style.lisp @@ -0,0 +1,8 @@ +;;;; css.lisp + +(in-package :vampire) + +(defun include-style (body) + ;(load-css (html-document body) "https://www.w3schools.com/w3css/4/w3.css") + ;(load-css (html-document body) "https://www.w3schools.com/lib/w3-theme-indigo.css") + ) diff --git a/vampire.asd b/vampire.asd index 7ffa473..4830ce2 100644 --- a/vampire.asd +++ b/vampire.asd @@ -20,6 +20,7 @@ (:file "downloader") (:file "model") (:file "session") + (:file "style") (:file "navigation") (:file "new-account") (:file "explore") |