From 588cedf699de1eda2c476133193cc2bb1e9d5dbc Mon Sep 17 00:00:00 2001 From: hovertank3d Date: Sat, 24 May 2025 10:58:06 +0000 Subject: update about and link to the source code --- templates/about.go.html | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 templates/about.go.html (limited to 'templates/about.go.html') diff --git a/templates/about.go.html b/templates/about.go.html new file mode 100644 index 0000000..ebd212f --- /dev/null +++ b/templates/about.go.html @@ -0,0 +1,16 @@ +
// about page is yet to be written ;)
+// come back later
+
+package lzcnt
+
+import "net/http"
+
+func (s *Server) aboutPage(w http.ResponseWriter, r *http.Request) {
+	payload := map[string]any{
+		"Page":  "about.go.html",
+		"Title": "About",
+	}
+
+	tmpl.ExecuteTemplate(w, "index.html", payload)
+}
+
\ No newline at end of file -- cgit v1.2.3