pict-rs-proxy/templates/error.rs.html
Aode (Lion) 903134c7c7
All checks were successful
continuous-integration/drone/push Build is passing
Use pict-rs's background uploading feature
2022-05-02 20:38:46 -05:00

16 lines
264 B
HTML

@use super::{layout_html, return_home_html};
@(msg: &str)
@: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>
})