templates/template_issue.go

18 lines
291 B
Go
Raw Normal View History

2025-01-12 10:47:45 +00:00
package templates
import (
"net/http"
"time"
)
func (T Templates) ReplTemplateIssue(err error, w http.ResponseWriter, r *http.Request) {
T.NewRepl(
err,
w,
r,
"Template problem",
"Something's wrong with our templates.",
"email us this timestamp: "+time.Now().String(),
)
}