diff options
author | shoshin <shoshin@cicadas.surf> | 2022-12-07 21:46:38 -0600 |
---|---|---|
committer | shoshin <shoshin@cicadas.surf> | 2022-12-07 21:46:38 -0600 |
commit | 8ea45fdb238952fa92d57979d71db61de105f59e (patch) | |
tree | 762bf683a82d614878d5f325d0e72583b0bb7f49 | |
parent | c78b0ac9a5eb89c271527ea0b8aec9f95c859427 (diff) |
Fix: format nil instead of t for stylesheet filename
-rw-r--r-- | style.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,4 +5,4 @@ (defvar css-version "2") (defun include-style (body) - (load-css (html-document body) (format t "/css/main-~a.css" css-version) :load-only-once nil)) + (load-css (html-document body) (format nil "/css/main-~a.css" css-version) :load-only-once nil)) |