pict-rs-proxy/templates/not_found.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

18 lines
375 B
HTML

@use super::{layout_html, return_home_html, statics::not_found_css};
@()
@:layout_html("Not Found", None, {
<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>
@:return_home_html()
</section>
})