// i made this site to serve some of my future demos and fuuny
// projects. currently there are only couple of interesting things i wrote:
// * [46load],
// * [fire],
// * [bfc],
// * [enigma16],
// so, come back when i'll write something
// also, this site uses [genhl] to go:generate syntax highlight
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)
}