diff options
author | xengineering <me@xengineering.eu> | 2023-12-27 13:07:35 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-12-27 13:11:29 +0100 |
commit | 1978c5257e2cf4720716b59c3d69dc21cf457c18 (patch) | |
tree | 86cc6868d5cdbb12f9e63fd747b07479dfc9ff77 | |
parent | 8fc20cc3689dcad169f853102a868a6116cc7b26 (diff) | |
download | ceres-1978c5257e2cf4720716b59c3d69dc21cf457c18.tar ceres-1978c5257e2cf4720716b59c3d69dc21cf457c18.tar.zst ceres-1978c5257e2cf4720716b59c3d69dc21cf457c18.zip |
Provide CSS via HTTP server
This is a simple first HTTP handler and is required to display the
website with the intended design.
-rw-r--r-- | main.go | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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) |