change ul to proper table, added table sorting
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Philipp 2021-10-16 15:03:27 +02:00
parent a614093c32
commit d9221087d0
7 changed files with 624 additions and 187 deletions

View file

@ -20,6 +20,7 @@ func NewHandler(store steamServer.Store) *Handler {
h.Get("/favicon.ico", faviconHandler)
h.Get("/style.css", maincssHandler)
h.Get("/css/bootstrap.css", bootstrapHandler)
h.Get("/js/sorttable.js", sorttableHandler)
h.Get("/images/01.png", arrowHandler)
h.Get("/", h.Home())
@ -49,6 +50,10 @@ func bootstrapHandler(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "static/css/bootstrap.css")
}
func sorttableHandler(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "static/js/sorttable.js")
}
func arrowHandler(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "static/images/01.png")
}