package views import "strconv" templ ErrorPage(code int, display string) { @layout("Error - dumb") {

{ strconv.Itoa(code) }

{ display }

} }