summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authora73x <[email protected]>2024-09-03 09:02:23 +0100
committera73x <[email protected]>2024-09-03 09:02:23 +0100
commit95b8e9d1c04427316330c027b41759d0e7df7915 (patch)
tree60b086837cbcdafcc2a5a7e104d13eed0d5dca01 /Makefile
parent17b008f72f284ea989fddb2b6b52c2ca558c985a (diff)
chore(html): move css out of html head
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 641e853..7dd5d07 100644
--- a/Makefile
+++ b/Makefile
@@ -5,6 +5,10 @@ DOCKER_IMAGE=a73xsh/home:${VERSION}
serve:
go run ./cmd/home
+.PHONY: css
+css:
+ go run contrib/styles.go > public/static/syntax.css
+
.PHONY: image
image:
docker build . -t ${DOCKER_IMAGE}