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

18 lines
375 B
HTML
Raw Permalink Normal View History

2020-06-14 16:16:12 +00:00
@use super::{layout_html, return_home_html, statics::not_found_css};
@()
2020-12-03 19:40:16 +00:00
@: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>
})