10 lines
143 B
HTML
10 lines
143 B
HTML
|
@use super::base_html;
|
||
|
@use poem::http::StatusCode;
|
||
|
|
||
|
@(status: &str, message: &str)
|
||
|
|
||
|
@:base_html({
|
||
|
<h1>error @status</h1>
|
||
|
<h2>@message</h2>
|
||
|
})
|