Advertisement
Guest User

Untitled

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