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

16 lines
264 B
HTML
Raw Normal View History

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