hoc/templates/p404.rs.html

15 lines
405 B
HTML
Raw Normal View History

2019-04-23 18:19:54 +02:00
@use super::base;
2019-04-30 14:20:11 +02:00
@use crate::VersionInfo;
2019-04-23 18:19:54 +02:00
2019-04-30 14:20:11 +02:00
@(version_info: VersionInfo)
2019-04-23 18:19:54 +02:00
@:base("Page not Found - Hits-of-Code Badges", "404 - Page not Found", {
<p>
<big>Sorry</big>. I couldn't find the page you are looking for. Please go <a href="/">back to the homepage</a>.
</p>
<p>
If you think, this is a mistake on my side, please <a href="mailto:mail+hoc@@vbrandl.net">drop me a mail</a>.
</p>
2019-04-30 14:20:11 +02:00
}, version_info)