summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 8ed57bf..118262b 100644
--- a/main.go
+++ b/main.go
@@ -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)
}
}