ITS NOT HTML
Jes Olson j3s@c3f.net
Fri, 18 Feb 2022 01:31:46 -0500
2 files changed,
2 insertions(+),
2 deletions(-)
M
main.go
→
main.go
@@ -44,7 +44,7 @@ fs := http.FileServer(http.Dir("./static"))
http.Handle("/static/", http.StripPrefix("/static/", fs)) http.HandleFunc("/age.html", serveAge) - http.HandleFunc("/ip.html", ipHandler) + http.HandleFunc("/ip", ipHandler) http.HandleFunc("/review/", babyHandler) http.HandleFunc("/thought/", babyHandler) http.HandleFunc("/", serveTemplate)
M
templates/tools.html
→
templates/tools.html
@@ -3,5 +3,5 @@ {{define "body"}}
<p>heres some of my toolz</p> <p><a href="/age.html">/age - age encryptor</a></p> <p><a href="/feeds">/feeds - personal rss feed</a></p> -<p><a href="/ip.html">/ip - get ur public ip</a></p> +<p><a href="/ip">/ip - get ur public ip</a></p> {{end}}