hoc/templates/p404_no_master.rs.html

17 lines
645 B
HTML
Raw Permalink Normal View History

@use super::base_html;
2020-02-12 20:56:47 +01:00
@use crate::statics::VersionInfo;
@(version_info: VersionInfo, repo_count: usize)
@:base_html("Branch not Found - Hits-of-Code Badges", "404 - Branch not Found", {
2020-02-12 20:56:47 +01:00
<p>
<big>Sorry</big>. I couldn't find the requested branch of your repositroy. Currently this service assumes the
extistence of a branch named <code>master</code>. If you'd like to request a badge for another branch, you can do so by
attaching <code>?branch=&lt;branch-name&gt;</code> to the request.
2020-02-12 20:56:47 +01:00
</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>
}, version_info, repo_count)