diff options
Diffstat (limited to 'explore.lisp')
-rw-r--r-- | explore.lisp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/explore.lisp b/explore.lisp index 64d244a..ca9cb8e 100644 --- a/explore.lisp +++ b/explore.lisp @@ -9,11 +9,11 @@ (defun create-playlist-explore-card (parent pl) (with-clog-create parent (div (:bind card) - (img (:bind thumb)) - (div () - (a (:link (url-to-playlist pl) :content (playlist-title pl))) - (span (:content " -- ")) - (span (:content (secs-to-hms (playlist-duration pl)))))) + (a (:link (url-to-playlist pl) ) + (img (:bind thumb)) + (span (:content (playlist-title pl))) + (span (:content " -- ")) + (span (:content (secs-to-hms (playlist-duration pl)))))) (setf (maximum-width thumb) "180px" (width card) "200px") (when-let (track (first (playlist-tracks pl))) |