From 1978c5257e2cf4720716b59c3d69dc21cf457c18 Mon Sep 17 00:00:00 2001 From: xengineering Date: Wed, 27 Dec 2023 13:07:35 +0100 Subject: Provide CSS via HTTP server This is a simple first HTTP handler and is required to display the website with the intended design. --- main.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/main.go b/main.go index 6b3a0a9..44e4172 100644 --- a/main.go +++ b/main.go @@ -2,6 +2,7 @@ package main import ( "context" + "embed" "log" "net/http" "os" @@ -31,9 +32,15 @@ func main() { log.Printf("Cleaning up due to OS signal '%v'\n", sig) } +//go:embed view/static/simple.css/simple.css +var static embed.FS + func startServer(addr string) *http.Server { var r *mux.Router = mux.NewRouter() + r.PathPrefix("/static/"). + Handler(http.StripPrefix("/static/", http.FileServer(http.FS(static)))) + muxer := http.NewServeMux() muxer.Handle("/", r) -- cgit v1.2.3-70-g09d2