From 1dcfe25552046f159c67188d203ecd4f4fae159a Mon Sep 17 00:00:00 2001 From: Will Estes Date: Wed, 8 Jul 2026 18:59:09 -0400 Subject: [PATCH] Extract inline CSS into assets/css/main.css, loaded via Hugo Pipes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Minified and fingerprinted in production (cache-busting via content hash), plain link in dev. Sets up for actual styling work — much easier to find and edit than a + {{ $css := resources.Get "css/main.css" }} + {{ if hugo.IsProduction }} + {{ $css = $css | minify | fingerprint }} + + {{ else }} + + {{ end }}