diff options
author | Runxi Yu <me@runxiyu.org> | 2025-08-18 02:09:50 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-08-18 02:09:50 +0800 |
commit | aa63d26cdd4284faf67f9582d34a12c8767aed15 (patch) | |
tree | bd895fd2c5a87b4cf5d943775e6a1eff730886bd /forged/internal/incoming/web/handlers/group.go | |
parent | Add templates and static paths to the web config (diff) | |
download | forge-aa63d26cdd4284faf67f9582d34a12c8767aed15.tar.gz forge-aa63d26cdd4284faf67f9582d34a12c8767aed15.tar.zst forge-aa63d26cdd4284faf67f9582d34a12c8767aed15.zip |
Add template rendering
Diffstat (limited to 'forged/internal/incoming/web/handlers/group.go')
-rw-r--r-- | forged/internal/incoming/web/handlers/group.go | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/forged/internal/incoming/web/handlers/group.go b/forged/internal/incoming/web/handlers/group.go index 1a1cb1d..0c631c3 100644 --- a/forged/internal/incoming/web/handlers/group.go +++ b/forged/internal/incoming/web/handlers/group.go @@ -4,14 +4,22 @@ import ( "net/http" "strings" + "go.lindenii.runxiyu.org/forge/forged/internal/incoming/web/templates" wtypes "go.lindenii.runxiyu.org/forge/forged/internal/incoming/web/types" ) -type GroupHTTP struct{} +type GroupHTTP struct { + r templates.Renderer +} -func NewGroupHTTP() *GroupHTTP { return &GroupHTTP{} } +func NewGroupHTTP(r templates.Renderer) *GroupHTTP { return &GroupHTTP{r: r} } func (h *GroupHTTP) Index(w http.ResponseWriter, r *http.Request, _ wtypes.Vars) { base := wtypes.Base(r) - _, _ = w.Write([]byte("group index for: /" + strings.Join(base.GroupPath, "/") + "/")) + _ = h.r.Render(w, "group/index.html", struct { + GroupPath string + }{ + GroupPath: "/" + strings.Join(base.GroupPath, "/") + "/", + }) } + |