diff --git a/site-api.go b/site-api.go
index 1f6c82e..27a7923 100644
--- a/site-api.go
+++ b/site-api.go
@@ -59,7 +59,7 @@ func greetUser(w http.ResponseWriter, r *http.Request) {
loggedIn, username := detectUser(r, "greetUser")
if loggedIn {
- fmt.Fprintf(w, strings.Replace(bodyWrapper(r, "loggedIn"), "$USER", username, -1))
+ fmt.Fprintf(w, strings.Replace(pageBuilder(r, "loggedIn"), "$USER", username, -1))
} else {
fmt.Fprintf(w, pageBuilder(r, "home"))
}
diff --git a/static/header.tpl b/static/header.tpl
index b8c340f..67a9d79 100644
--- a/static/header.tpl
+++ b/static/header.tpl
@@ -9,8 +9,7 @@
-
-
+
diff --git a/static/loggedIn.tpl b/static/loggedIn.tpl
index b1d926f..b0639cd 100644
--- a/static/loggedIn.tpl
+++ b/static/loggedIn.tpl
@@ -1 +1,3 @@
+
+
\ No newline at end of file