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

21 lines
481 B
HTML

@use super::{layout_html, statics::not_found_css};
@()
@:layout_html({
<title>Not Found</title>
<link rel="stylesheet" href="@crate::statics(&not_found_css.name)" type="text/css" />
}, {
<section>
<article>
<h3>Oops!</h3>
</article>
<article>
<p>The page you are looking for could not be found</p>
</article>
<article>
<p><a href="/">Return Home</a></p>
</article>
</section>
})