(in-package #:vampire) (defmacro page ((&key (title "") (csspath "/css/style.css")) &body body) `(spinneret:with-html-string (:doctype) (:head (:title ,title) (:meta :charset "UTF-8") (:meta :name "viewport" :content "width=device-width, initial-scale=1.0") (:link :rel "stylesheet" :href ,csspath)) (:body ,@body)))