From 8d7e708d98a3a46ba3ba08f9c8deeb4838bb8ca5 Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Fri, 17 May 2024 23:37:43 +0200 Subject: Render posts completely using common rendering methods The aim is to reduce reliance on custom logic in the handlers for every protocol, eventually outsourcing all of it into `render.Methods`, leaving each protocol to simply direct calls to the correct template. --- src/http/index.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/http/index.go') diff --git a/src/http/index.go b/src/http/index.go index 21c6c16..48d0d33 100644 --- a/src/http/index.go +++ b/src/http/index.go @@ -31,6 +31,6 @@ func (a *api) renderIndexHandler() http.Handler { return } - executeTemplate(rw, r, tpl, nil) + a.executeTemplate(rw, r, tpl, nil) }) } -- cgit v1.2.3