2024-05-10 14:20:43 -07:00
|
|
|
<html>
|
|
|
|
|
|
|
|
|
|
<head>
|
2024-05-25 19:16:36 -07:00
|
|
|
<title>Not Found</title>
|
2024-05-15 13:13:44 -07:00
|
|
|
{{html_escaper::Trusted(include_str!( concat!(env!("CARGO_MANIFEST_DIR"), "/templates/web/html/components/head.html")))}}
|
2024-05-10 14:20:43 -07:00
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
<main class="container">
|
|
|
|
|
|
|
|
|
|
<article>
|
|
|
|
|
<header class="center-text"><h3>Not found</h3></header>
|
|
|
|
|
<section>
|
|
|
|
|
These are not the droids you're looking for.
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
%% if self.error_msg.len() > 0 {
|
|
|
|
|
<section>
|
|
|
|
|
Hint: {{self.error_msg}}
|
|
|
|
|
</section>
|
|
|
|
|
%% }
|
|
|
|
|
</article>
|
|
|
|
|
|
|
|
|
|
<article>
|
|
|
|
|
<p>
|
|
|
|
|
<a href="/">Home</a>
|
|
|
|
|
| <a href='/block/genesis'>Genesis</a>
|
|
|
|
|
| <a href='/block/tip'>Tip</a>
|
|
|
|
|
</p>
|
|
|
|
|
</article>
|
|
|
|
|
|
|
|
|
|
</main>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|