// 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) }