alpha repo init

This commit is contained in:
2025-12-21 16:25:17 +00:00
parent ad83ae84e4
commit 268af8d691
2308 changed files with 11155 additions and 148 deletions

View File

@@ -80,6 +80,17 @@ func (a *App) handleManagement(w http.ResponseWriter, r *http.Request) {
a.render(w, "management.html", data)
}
func (a *App) handleVTL(w http.ResponseWriter, r *http.Request) {
data := map[string]any{
"Title": "Virtual Tape Library",
"Build": map[string]string{
"version": "v0.1.0-dev",
},
"ContentTemplate": "vtl-content",
}
a.render(w, "vtl.html", data)
}
func (a *App) handleLoginPage(w http.ResponseWriter, r *http.Request) {
data := map[string]any{
"Title": "Login",