1 (defun html-file (base)
2 (format nil "~(~A~).html" base))
4 (defmacro page (name title &rest body)
6 `(with-open-file (*standard-output*
13 (as h2 (string-upcase ,ti)))
17 ;;; Utilities for generating links
19 (defmacro with-link (dest &rest body)
21 (format t "<a href=\"~A\">" (html-file ,dest))