summaryrefslogtreecommitdiffstats
path: root/cmd/web/handlers.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/web/handlers.go')
-rw-r--r--cmd/web/handlers.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/web/handlers.go b/cmd/web/handlers.go
index 8df8928..4b76103 100644
--- a/cmd/web/handlers.go
+++ b/cmd/web/handlers.go
@@ -27,7 +27,7 @@ func (app *application) listOrganisation(w http.ResponseWriter, r *http.Request)
files := []string{
"./ui/html/base.tmpl.html",
"./ui/html/pages/organisations/list.tmpl.html",
- // "./ui/html/partials/nav.tmpl.html",
+ "./ui/html/partials/nav.tmpl.html",
}
ts, err := template.ParseFiles(files...)
@@ -51,7 +51,7 @@ func (app *application) home(w http.ResponseWriter, r *http.Request) {
files := []string{
"./ui/html/base.tmpl.html",
"./ui/html/pages/home.tmpl.html",
- // "./ui/html/partials/nav.tmpl.html",
+ "./ui/html/partials/nav.tmpl.html",
}
ts, err := template.ParseFiles(files...)