Advertisement
Guest User

Untitled

a guest
Jul 9th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. (defmethod render-page ((page page))
  2. (format nil
  3. (with-html-string
  4. (:doctype)
  5. (:html
  6. (:head
  7. (loop for header-item in (head page) do
  8. `(,header-item)))
  9. (:body
  10. (loop for body-item in (body page)
  11. body-item
  12. ))))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement