Fix naming of functions
This commit is contained in:
parent
ce4f9a32e1
commit
3dda04f3c6
1 changed files with 4 additions and 4 deletions
|
@ -64,12 +64,12 @@
|
||||||
|
|
||||||
(defparameter *color-theme* "dark")
|
(defparameter *color-theme* "dark")
|
||||||
|
|
||||||
(defun bs-css-url ()
|
(defun bs-url-css ()
|
||||||
(if *use-cdn*
|
(if *use-cdn*
|
||||||
*cdn-url-css*
|
*cdn-url-css*
|
||||||
*local-url-css*))
|
*local-url-css*))
|
||||||
|
|
||||||
(defun bs-js-url ()
|
(defun bs-url-js ()
|
||||||
(if *use-cdn*
|
(if *use-cdn*
|
||||||
*cdn-url-js*
|
*cdn-url-js*
|
||||||
*local-url-js*))
|
*local-url-js*))
|
||||||
|
@ -137,7 +137,7 @@ Example usage:
|
||||||
|
|
||||||
(:title ,title)
|
(:title ,title)
|
||||||
|
|
||||||
(:link :type "text/css" :rel "stylesheet" :href ,(bs-css-url))
|
(:link :type "text/css" :rel "stylesheet" :href ,(bs-url-css))
|
||||||
,@(loop for url in add-css-urls
|
,@(loop for url in add-css-urls
|
||||||
collect `(:link :type "text/css"
|
collect `(:link :type "text/css"
|
||||||
:rel "stylesheet" :href ,url)))
|
:rel "stylesheet" :href ,url)))
|
||||||
|
@ -145,7 +145,7 @@ Example usage:
|
||||||
(:body (:h1 :class "visually-hidden" ,title)
|
(:body (:h1 :class "visually-hidden" ,title)
|
||||||
(:main ,@(if main-con (list :class "container") nil) ,@body)
|
(:main ,@(if main-con (list :class "container") nil) ,@body)
|
||||||
|
|
||||||
(:script :src ,(bs-js-url))
|
(:script :src ,(bs-url-js))
|
||||||
,@(loop for url in add-js-urls
|
,@(loop for url in add-js-urls
|
||||||
collect `(:script :src ,url))))))
|
collect `(:script :src ,url))))))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue