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)