summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2024-10-03 22:34:48 +0200
committerRené 'Necoro' Neumann <necoro@necoro.eu>2024-10-03 22:34:48 +0200
commitb731258e18504ce41ba96ff890c96a385e7a3347 (patch)
tree5648765e92661fdf129a44c47e9f0295dd46b36d /main.go
parent09fccc3599dc4f23a60c4bdbc77c2f4740e2ade4 (diff)
downloadgosten-b731258e18504ce41ba96ff890c96a385e7a3347.tar.gz
gosten-b731258e18504ce41ba96ff890c96a385e7a3347.tar.bz2
gosten-b731258e18504ce41ba96ff890c96a385e7a3347.zip
Overhaul navbar and general site setup
Diffstat (limited to '')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 084f1cf..1886736 100644
--- a/main.go
+++ b/main.go
@@ -76,6 +76,6 @@ func indexPage() http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
uid := userId(r)
u, _ := Q.GetUserById(r.Context(), uid)
- showTemplate(w, "content", u.Name)
+ showTemplate(w, "index", u.Name)
}
}