maj/site/templates/error.rs.html

16 lines
201 B
HTML
Raw Normal View History

2020-08-02 02:42:44 +00:00
@use super::{header_html, footer_html};
@(url: String, why: String)
@:header_html("Error")
<h1>Error</h1>
<p>
There was an error proxying <code>@url</code>: @why.
</p>
<hr />
@:footer_html()