pict-rs-proxy/templates/error.rs.html

18 lines
329 B
HTML
Raw Normal View History

2020-06-14 16:16:12 +00:00
@use super::{layout_html, return_home_html};
@(msg: &str)
@:layout_html({
<title>Error</title>
}, {
<section>
<article>
<h3>There was an error processing your request</h3>
</article>
<article>
<p>@msg</p>
</article>
@:return_home_html()
</section>
})