From a720990ceff1f131c0d5721a05c6a147797d8340 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Fri, 14 Jul 2023 19:37:10 +0200 Subject: [PATCH] card-groups dont need id --- src/component/card.lisp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/component/card.lisp b/src/component/card.lisp index 5a135ee..bfc9322 100644 --- a/src/component/card.lisp +++ b/src/component/card.lisp @@ -159,7 +159,7 @@ Example: `(spinneret:with-html (:div :class "card" ,@body))) -(defmacro card-group ((&key (id "cardGroupExample")) &rest rest) +(defmacro card-group (&rest rest) "This macro generates a group of Bootstrap cards. ID: Specifies a unique identifier for the card group. Defaults to 'cardGroupExample'. @@ -176,7 +176,6 @@ Example: (:img-src \"...\" :title \"Card #3\" :text \"Some quick example text.\" :link (:href \"#\" :label \"Go somewhere\")))" `(spinneret:with-html (:div :class "card-group" - :id ,id ,@(loop for item in rest collect (destructuring-bind (&key img-src body-title body-text link-href link-label) item `(card (img (:src ,img-src))