mirror of
https://github.com/vbatts/imgsrv.git
synced 2025-01-12 23:20:06 +00:00
adding back the path matches for other assets
This commit is contained in:
parent
338cce6561
commit
f54091db6e
2 changed files with 12 additions and 2 deletions
12
server.go
12
server.go
|
@ -719,10 +719,20 @@ func routeAssets(w http.ResponseWriter, r *http.Request) {
|
|||
return
|
||||
}
|
||||
|
||||
w.Header().Set("Cache-Control", "max-age=315360000")
|
||||
|
||||
switch path {
|
||||
case "bootstrap.css":
|
||||
fmt.Fprintf(w, "%s", assets.BootstrapCss())
|
||||
w.Header().Set("Cache-Control", "max-age=315360000")
|
||||
w.Header().Set("Content-Type", "text/css")
|
||||
case "bootstrap.js":
|
||||
fmt.Fprintf(w, "%s", assets.BootstrapJs())
|
||||
w.Header().Set("Content-Type", "application/javascript")
|
||||
case "jquery.js":
|
||||
fmt.Fprintf(w, "%s", assets.JqueryJs())
|
||||
w.Header().Set("Content-Type", "application/javascript")
|
||||
case "jqud.js":
|
||||
fmt.Fprintf(w, "%s", assets.TagCloudJs())
|
||||
w.Header().Set("Content-Type", "application/javascript")
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue