From e59ad9f795c9a56f9ded77917942a86811625e38 Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Mon, 18 Aug 2025 19:53:03 -0400 Subject: [PATCH] Quick way to get the copy project up and working without constantly moving the normal site layout around. --- Makefile | 4 ++++ ssgod_copy.toml | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 ssgod_copy.toml diff --git a/Makefile b/Makefile index 4533289..a70481a 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,7 @@ build_bot: site: go tool ssgod + go tool ssgod -config ssgod_copy.toml site_watch: go tool ssgod watch @@ -35,6 +36,9 @@ docs: go tool pkgsite --open tailwind: + tailwindcss --input ./static/input_style.css --output ./static/style.css + +tailwind_watch: tailwindcss --input ./static/input_style.css --output ./static/style.css --watch tailwind_install: diff --git a/ssgod_copy.toml b/ssgod_copy.toml new file mode 100644 index 0000000..be6203c --- /dev/null +++ b/ssgod_copy.toml @@ -0,0 +1,4 @@ +views = "pages/copy" +layout = "pages/layouts/copy.html" +target = "public/copy" +watch_delay = "500ms"