package main import "net/http" func HomePage(w http.ResponseWriter, r *http.Request) { body := `

HPL Toolbox

Standalone build. Pick a tool from the top bar.

` w.Header().Set("Content-Type", "text/html; charset=utf-8") _, _ = w.Write([]byte(Page("/", "Home", body))) }