blob: ce8fa9070fe30507594a60aa762722e5257d0144 (
plain)
1
2
3
4
5
6
7
8
9
|
;;;; css.lisp
(in-package :vampire)
(defun include-style (body)
;(load-css (html-document body) "/css/reset.css")
(load-css (html-document body) "/css/main.css" :load-only-once nil)
;(load-css (html-document body) "https://www.w3schools.com/lib/w3-theme-indigo.css")
)
|