blob: cc5a735619c2e93d32460e7d38266cdca872f640 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
@use super::{header_html, footer_html};
@(path: String)
@:header_html(Some("Not Found"), None)
<h1>Not Found</h1>
<p>The path at <code>@path</code> could not be found. If you expected this path to exist, please <a href="https://github.com/Xe/site/issues/new">report this issue</a> so it can be fixed.</p>
@:footer_html()
|