diff options
Diffstat (limited to '')
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -82,6 +82,6 @@ func indexPage() http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { uid := userId(r) u, _ := Q.GetUserById(r.Context(), uid) - showTemplate(w, "index", u.Name) + showTemplate(w, "content", u.Name) } } |