summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2024-02-25 21:15:40 +0100
committerRené 'Necoro' Neumann <necoro@necoro.eu>2024-02-25 21:15:40 +0100
commit4ebd772e57469345120187fe01d956a3295d1468 (patch)
tree4ed00deb0bfafe34568ad16aaab694d0733aeee7 /main.go
parentcd1a6cbd06d3b75adf708fcd2a7974bf94452248 (diff)
downloadgosten-master.tar.gz
gosten-master.tar.bz2
gosten-master.zip
Small model changes / ReformattingHEADmaster
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)
}
}