@use super::base_html;
@use poem::http::StatusCode;

@(status: &str, message: &str)

@:base_html({
<h1>error @status</h1>
<h2>@message</h2>
})