(in-package #:vampire)
(defun page (title &rest body)
(with-output-to-string (str)
(html
(
(
( title)
( (@ :charset "UTF-8"))
( (@ :name "viewport" :content "width=device-width, initial-scale=1.0")))
(
($center
( (@ :class "container") (apply 'eval body)))))
str)))