aboutsummaryrefslogtreecommitdiff
path: root/pkg/tpl/error.templ
blob: a2e9438c871f228c5b659930e7fe5a83add1e8db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package tpl

import "strconv"

templ ErrorPage(code int, message string) {
	@Layout(HeaderParams{}) {
		<h1>Ошибка { strconv.Itoa(code) }!</h1>
		<p>{ message }</p>
	}
}