From 6ff2379dd09ec957ede8e309524568274efe8665 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Sat, 26 Jan 2019 11:47:16 -0800 Subject: removed taht need --- cmd/site/main.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'cmd') diff --git a/cmd/site/main.go b/cmd/site/main.go index 3791585..14aec02 100644 --- a/cmd/site/main.go +++ b/cmd/site/main.go @@ -13,10 +13,10 @@ import ( "time" "github.com/Xe/jsonfeed" - "within.website/ln" "github.com/gorilla/feeds" blackfriday "github.com/russross/blackfriday" "github.com/tj/front" + "within.website/ln" ) var port = os.Getenv("PORT") @@ -164,12 +164,15 @@ func Build() (*Site, error) { s.mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) { if r.URL.Path != "/" { w.WriteHeader(http.StatusNotFound) - s.renderTemplatePage("error.html", "can't find " + r.URL.Path).ServeHTTP(w,r) + s.renderTemplatePage("error.html", "can't find "+r.URL.Path).ServeHTTP(w, r) return } s.renderTemplatePage("index.html", nil).ServeHTTP(w, r) }) + s.mux.HandleFunc("/.within/health", func(w http.ResponseWriter, r *http.Request) { + http.Error(w, "OK", http.StatusOK) + }) s.mux.Handle("/resume", s.renderTemplatePage("resume.html", s.Resume)) s.mux.Handle("/blog", s.renderTemplatePage("blogindex.html", s.Posts)) s.mux.Handle("/contact", s.renderTemplatePage("contact.html", nil)) -- cgit v1.2.3