4ddaa84e5f
`page.rs.html` used to result in a function `templates::page`. Since ructe 0.7.2, `templates::page_html` was used and now the old alias has been removed.
17 lines
645 B
HTML
17 lines
645 B
HTML
@use super::base_html;
|
|
@use crate::statics::VersionInfo;
|
|
|
|
@(version_info: VersionInfo, repo_count: usize)
|
|
|
|
@:base_html("Branch not Found - Hits-of-Code Badges", "404 - Branch not Found", {
|
|
<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=<branch-name></code> to the request.
|
|
</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)
|