1 2 3 4 5 6 7 8 9 10
package tpl import "strconv" templ ErrorPage(code int, message string) { @Layout() { <h1>Ошибка { strconv.Itoa(code) }!</h1> <p>{ message }</p> } }