2023-01-30 09:22:45 +01:00
|
|
|
@use super::base_html;
|
2020-02-12 20:56:47 +01:00
|
|
|
@use crate::statics::VersionInfo;
|
|
|
|
|
|
|
|
@(version_info: VersionInfo, repo_count: usize)
|
|
|
|
|
2023-01-30 09:22:45 +01:00
|
|
|
@:base_html("Branch not Found - Hits-of-Code Badges", "404 - Branch not Found", {
|
2020-02-12 20:56:47 +01:00
|
|
|
<p>
|
2020-07-20 20:14:22 +02:00
|
|
|
<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=<branch-name></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)
|