1 2 3 4 5 6 7 8
package views templ ErrorPage(err error) { @Layout(nil) { <h1>Ошибка</h1> { err.Error() } } }