aboutsummaryrefslogtreecommitdiff
path: root/pkg/tpl/error.templ
blob: 0e0dcfa14f9b00e6c3750d5baabee226b03838c5 (plain) (blame)
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>
	}
}