summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authornavanchauhan <navanchauhan@gmail.com>2022-10-17 00:06:30 -0600
committernavanchauhan <navanchauhan@gmail.com>2022-10-17 00:06:30 -0600
commitf6fcfa97cad2b8bd33f6003fdfbcf4ca5d04375f (patch)
tree8ef881c03498f77da22b439f168e23fd642dc98d /main.go
parent652115908a85013264faf9041f1e63d06d52e50e (diff)
shifted templates
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.go b/main.go
index 98aa5d5..535e575 100644
--- a/main.go
+++ b/main.go
@@ -53,7 +53,7 @@ func main() {
index := client.Index("fda510k")
http.HandleFunc("/classic/", func(w http.ResponseWriter, r *http.Request) {
- t, _ := template.ParseFiles("search.gtpl")
+ t, _ := template.ParseFiles("templates/search.gtpl")
t.Execute(w, nil)
})
@@ -69,7 +69,7 @@ func main() {
}
//searchResTemplate := template.Must(template.ParseFiles("results.gtpl"))
- searchResTemplate := template.Must(template.New("results.gtpl").Funcs(funcMap).ParseFiles("results.gtpl"))
+ searchResTemplate := template.Must(template.New("results.gtpl").Funcs(funcMap).ParseFiles("templates/results.gtpl"))
// v2.0 UI
searchResultsTemplate2 := template.Must(template.New("search_results.html").Funcs(funcMap).ParseFiles("templates/search_results.html"))