hoc/templates/p500.rs.html

15 lines
450 B
HTML
Raw Permalink Normal View History

@use super::base_html;
2019-05-14 01:11:39 +02:00
@use crate::statics::VersionInfo;
2019-04-23 18:19:54 +02:00
2019-06-12 21:50:45 +02:00
@(version_info: VersionInfo, repo_count: usize)
2019-04-23 18:19:54 +02:00
@:base_html("Internal Server Error - Hits-of-Code Badges", "500 - Internal Server Error", {
2019-04-23 18:19:54 +02:00
<p>
<big>Oops</big>. Looks like a made a mistake. Please go <a href="/">back to the homepage</a> and try again.
</p>
<p>
If you think, this is a bug, please <a href="mailto:mail+hoc@@vbrandl.net">drop me a mail</a>.
</p>
2019-06-12 21:50:45 +02:00
}, version_info, repo_count)