Refresh artwork

This commit is contained in:
Søren L. Hansen 2021-04-25 02:25:41 -07:00
parent 0dfc5aed76
commit faeb610961
11 changed files with 3721 additions and 16 deletions

File diff suppressed because one or more lines are too long

View file

@ -199,7 +199,8 @@ func (server *Server) setupHandlers(ctx context.Context, cancel context.CancelFu
var siteMux = http.NewServeMux()
siteMux.HandleFunc(pathPrefix, server.handleIndex)
siteMux.Handle(pathPrefix+"js/", http.StripPrefix(pathPrefix, staticFileHandler))
siteMux.Handle(pathPrefix+"favicon.png", http.StripPrefix(pathPrefix, staticFileHandler))
siteMux.Handle(pathPrefix+"favicon.ico", http.StripPrefix(pathPrefix, staticFileHandler))
siteMux.Handle(pathPrefix+"icon.svg", http.StripPrefix(pathPrefix, staticFileHandler))
siteMux.Handle(pathPrefix+"css/", http.StripPrefix(pathPrefix, staticFileHandler))
siteMux.Handle(pathPrefix+"icon_192.png", http.StripPrefix(pathPrefix, staticFileHandler))