summaryrefslogtreecommitdiff
path: root/model.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'model.lisp')
-rw-r--r--model.lisp9
1 files changed, 7 insertions, 2 deletions
diff --git a/model.lisp b/model.lisp
index 4bf59c2..8849aa3 100644
--- a/model.lisp
+++ b/model.lisp
@@ -86,8 +86,13 @@ Example:
(defmethod render ((obj steam-achievement))
(with-slots (name description fulfillment icon icongray) obj
(with-html
- (:img :src icon)
- (:b name) description (:i (format-time fulfillment)))))
+ (:div
+ :class "feat"
+ (:div (:img :src icon))
+ (:div
+ (:div (:b name))
+ (:div description)
+ (:div (:i (format-time fulfillment))))))))
;;; "queries"