aboutsummaryrefslogtreecommitdiff
path: root/about.go
blob: 3d675c936acfab856f92aa0aca7debcad9da31f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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)
}