Guest User

Untitled

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