picgo/handler/profile.go

20 lines
340 B
Go
Raw Normal View History

2024-07-12 20:32:33 +08:00
package handler
import (
"net/http"
"picgo/corelib"
)
func ProfileHandler(w http.ResponseWriter, r *http.Request) {
if r.Method == "GET" {
data := struct {
Title string
Active string
}{
Title: "Admin Dashboard",
Active: r.URL.Path,
}
corelib.TemplateHandler(w, data, "view/layout.html", "view/profile.html")
2024-07-12 20:32:33 +08:00
}
}