From 8de51ead39778d8bfc3f27aea9fa0ea25bf5d8de Mon Sep 17 00:00:00 2001 From: Spencer Brower <6729162+sbrow@users.noreply.github.com> Date: Mon, 13 Jul 2026 14:53:31 -0400 Subject: [PATCH] feat: Replaced Tailwind with tuft css. --- AGENTS.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 2646b6c..0b1fc80 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -8,7 +8,7 @@ Thor is a static site generator written in [Odin](https://odin-lang.org), replac thor.json ← site config (title, base_url, author, params) content/ ← markdown and HTML content files layouts/ ← Mustache templates + partials -assets/ ← CSS (TailwindCSS source) and JS +assets/ ← CSS (Tufte-based) and JS public/ ← build output (generated) ``` @@ -90,15 +90,17 @@ raw markdown nix develop # From blog root: odin run ./thor -- -drafts -tailwindcss --input assets/css/main.css --output public/css/main.css --minify +cp assets/css/tufte.css public/css/tufte.css cp assets/js/main.js public/js/main.js caddy run # serves public/ on blog.localhost ``` +No CSS build step — `tufte.css` is static CSS, no preprocessor or compiler needed. + ### Production build ```bash -nix build # runs thor + tailwindcss + cp js, outputs to ./result/ +nix build # runs thor + copies CSS/JS, outputs to ./result/ ``` ### Tests