From 533a2a7924f8780ff35575a57d7008e8c63a9631 Mon Sep 17 00:00:00 2001 From: nukashimika Date: Thu, 11 Aug 2022 22:57:17 -0600 Subject: [PATCH] Added Makefile, fixes --- Makefile | 9 +++++++++ src/index.lisp | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..164ddf1 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +LISP ?= sbcl + +default: + $(LISP) --load src/index.lisp \ + --eval '(write-html-to-file)' + + +.PHONY: default +.SILENT: default diff --git a/src/index.lisp b/src/index.lisp index 7eba477..b98989b 100644 --- a/src/index.lisp +++ b/src/index.lisp @@ -7,7 +7,7 @@ (spinneret:with-html-string (:html (:head - (:link :rel "style.css") + (:link :rel "stylesheet" :href "style.css") (:body (:div :class "body" (:h1 "welcome")