change ul to proper table, added table sorting
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
a614093c32
commit
d9221087d0
7 changed files with 624 additions and 187 deletions
|
@ -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")
|
||||
}
|
||||
|
|
Reference in a new issue