Administration articles moved

This commit is contained in:
Laszlo Fogas
2019-11-13 19:50:54 +01:00
parent 64a241ccc8
commit a63a74053e
22 changed files with 474 additions and 593 deletions

View File

@@ -80,7 +80,7 @@ type website struct {
func (w *website) Register(mux *httptreemux.ContextMux) {
h := http.FileServer(w.fs)
h = setupCache(h)
mux.Handler("GET", "/favicon.png", h)
mux.Handler("GET", "/favicon.svg", h)
mux.Handler("GET", "/static/*filepath", h)
mux.NotFoundHandler = w.handleIndex
}