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

16 lines
318 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>
})