From baf7e11ebefaff4eb2000c119e88c3dfd291f1ac Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 19 Feb 2024 12:03:57 -0500 Subject: [PATCH] bump --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 5f8bfd8..486fc39 100644 --- a/main.go +++ b/main.go @@ -75,7 +75,7 @@ func main() { var d tplData s := http.NewServeMux() - s.HandleFunc("/style.css", http.FileServer(http.Dir("./")).ServeHTTP) + s.HandleFunc("style.css", http.FileServer(http.Dir("./")).ServeHTTP) s.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { d.Body = f.Render(true) tmpl.Execute(w, d)