11 lines
162 B
Text
11 lines
162 B
Text
|
package tpl
|
||
|
|
||
|
import "strconv"
|
||
|
|
||
|
templ ErrorPage(code int, message string) {
|
||
|
@Layout() {
|
||
|
<h1>Ошибка { strconv.Itoa(code) }!</h1>
|
||
|
<p>{ message }</p>
|
||
|
}
|
||
|
}
|