mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-06 02:30:42 -08:00
sbcl detected issues
This commit is contained in:
parent
e5a270ffe1
commit
93389b5558
9 changed files with 44 additions and 34 deletions
|
|
@ -40,12 +40,14 @@
|
|||
(col3 (create-div row :class "col-sm-4"))
|
||||
(tmp (create-section col3 :h3 :content "Column 3"))
|
||||
(tmp (create-p col3 :content "Lorem ipsum dolor..")))
|
||||
(declare (ignore tmp) (ignore l4))
|
||||
(set-on-click l1 (lambda (obj)(declare (ignore obj))(alert (window body) "Clicked link1")))
|
||||
(set-on-click l2 (lambda (obj)
|
||||
(declare (ignore obj))
|
||||
(let* ((alert (create-div body :class "alert alert-warning alert-dismissible fade show"))
|
||||
(tmp (create-phrase alert :strong :content "Wow! You clicked link 2"))
|
||||
(btn (create-button alert :class "close" :content "<span>×</span>")))
|
||||
(declare (ignore tmp))
|
||||
(setf (attribute alert "role") "alert")
|
||||
(setf (attribute btn "data-dismiss") "alert")
|
||||
(place-after nav alert))))
|
||||
|
|
@ -67,7 +69,8 @@
|
|||
(l4 (create-a nav :content "page1" :class "nav-link" :link "/"))
|
||||
;; Jumbotron
|
||||
(jumbo (create-div body :class "jumbotron text-center"))
|
||||
(jname (create-section jumbo :h1 :content "You found Page2"))))
|
||||
(jname (create-section jumbo :h1 :content "You found Page2")))
|
||||
(declare (ignore l1) (ignore l2) (ignore l3) (ignore l4) (ignore jname)))
|
||||
(run body))
|
||||
|
||||
(defun start-tutorial ()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue