refactor: move music admin to /admin/music; keep /admin generic

This commit is contained in:
ari melody 2025-07-15 16:40:15 +01:00
parent ddbf3444eb
commit bd2dc806d5
Signed by: ari
GPG key ID: CF99829C92678188
31 changed files with 1079 additions and 906 deletions

13
admin/templates/index.go Normal file
View file

@ -0,0 +1,13 @@
package templates
import (
"html/template"
"path/filepath"
)
var IndexTemplate = template.Must(template.ParseFiles(
filepath.Join("admin", "views", "layout.html"),
filepath.Join("view", "prideflag.html"),
filepath.Join("admin", "components", "release", "release-list-item.html"),
filepath.Join("admin", "views", "index.html"),
))