Fix indentation
This commit is contained in:
parent
c8928bff1a
commit
44f8fe0b43
1 changed files with 7 additions and 7 deletions
|
@ -100,10 +100,10 @@ Example:
|
|||
|
||||
(defmacro accordion ((&key id flush) &body body)
|
||||
(let ((class (concatenate 'string "accordion" (when flush " accordion-flush"))))
|
||||
`(spinneret:with-html
|
||||
(:div :class ,class
|
||||
:id ,id
|
||||
,@(loop for (title . content) in body
|
||||
collect `(:div :class "accordion-item"
|
||||
(:h5 :class "accordion-header" ,title)
|
||||
(:div :class "accordion-body" ,content)))))))
|
||||
`(spinneret:with-html
|
||||
(:div :class ,class
|
||||
:id ,id
|
||||
,@(loop for (title . content) in body
|
||||
collect `(:div :class "accordion-item"
|
||||
(:h5 :class "accordion-header" ,title)
|
||||
(:div :class "accordion-body" ,content)))))))
|
||||
|
|
Loading…
Add table
Reference in a new issue