From e3f121adcee66f218a2ab6decf4b20d38fdaf19a Mon Sep 17 00:00:00 2001 From: navanchauhan Date: Sun, 16 Oct 2022 23:34:21 -0600 Subject: shifted / to /classic --- main.go | 8 ++++---- results.gtpl | 4 ++-- search.gtpl | 2 +- templates/home.html | 2 +- templates/search_results.html | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/main.go b/main.go index a41f774..98aa5d5 100644 --- a/main.go +++ b/main.go @@ -52,12 +52,12 @@ func main() { index := client.Index("fda510k") - http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { + http.HandleFunc("/classic/", func(w http.ResponseWriter, r *http.Request) { t, _ := template.ParseFiles("search.gtpl") t.Execute(w, nil) }) - http.HandleFunc("/2.0/", func(w http.ResponseWriter, r *http.Request) { + http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { t, _ := template.ParseFiles("templates/home.html") t.Execute(w, nil) }) @@ -79,7 +79,7 @@ func main() { os.Exit(1) } - http.HandleFunc("/2.0/search", func(w http.ResponseWriter, r *http.Request) { + http.HandleFunc("/search", func(w http.ResponseWriter, r *http.Request) { r.ParseForm() fmt.Println(r.Form) if r.Form["query"] != nil || r.FormValue("query") != "" { @@ -140,7 +140,7 @@ func main() { } }) - http.HandleFunc("/search", func(w http.ResponseWriter, r *http.Request) { + http.HandleFunc("/classic/search", func(w http.ResponseWriter, r *http.Request) { r.ParseForm() fmt.Println(r.Form) if r.Form["query"] != nil || r.FormValue("query") != "" { diff --git a/results.gtpl b/results.gtpl index a68b122..151a7d3 100644 --- a/results.gtpl +++ b/results.gtpl @@ -29,8 +29,8 @@ {{ end }} {{ if .MoreResults }} -

Previous Page

-

Next Page

+

Previous Page

+

Next Page

{{ end }} \ No newline at end of file diff --git a/search.gtpl b/search.gtpl index 0b83191..c14c02b 100644 --- a/search.gtpl +++ b/search.gtpl @@ -2,7 +2,7 @@

DogeKnows

-
+
diff --git a/templates/home.html b/templates/home.html index 35e3ff6..5357aa1 100644 --- a/templates/home.html +++ b/templates/home.html @@ -20,7 +20,7 @@
-
+
diff --git a/templates/search_results.html b/templates/search_results.html index d6b65e4..c6a2c4a 100644 --- a/templates/search_results.html +++ b/templates/search_results.html @@ -21,7 +21,7 @@
- +
-- cgit v1.2.3