mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 13:27:36 +03:00
feat: add album handler
Serves a page including the album name, artist, track list, and credits. Each of the tracks have links to the lyrics page, provided there is one available.
This commit is contained in:
parent
ab19250c66
commit
273176a57c
4 changed files with 185 additions and 0 deletions
1
main.go
1
main.go
|
@ -31,6 +31,7 @@ func main() {
|
|||
r.HandleFunc("/{id}-lyrics", lyricsHandler)
|
||||
r.HandleFunc("/images/{filename}.{ext}", proxyHandler)
|
||||
r.PathPrefix("/static/").Handler(http.StripPrefix("/static/", http.FileServer(http.Dir("static"))))
|
||||
r.HandleFunc("/albums/{artist}/{albumName}", albumHandler)
|
||||
r.NotFoundHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
w.WriteHeader(http.StatusNotFound)
|
||||
render("error", w, map[string]string{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue