Make full base URL configurable

This commit is contained in:
Valentin Brandl
2020-11-24 19:06:42 +01:00
parent 391fa39470
commit 8e78d13443
3 changed files with 9 additions and 9 deletions

View File

@ -1,7 +1,7 @@
@use super::base;
@use crate::statics::VersionInfo;
@(version_info: VersionInfo, repo_count: usize, domain: &str, url: &str, service: &str, path: &str)
@(version_info: VersionInfo, repo_count: usize, base_url: &str, url: &str, service: &str, path: &str)
@:base("Hits-of-Code Badges", "Badge Generator", {
@ -10,7 +10,7 @@ Here is the markdown for the badge for <a href="https://@url/@path">@url/@path</
</p>
<pre>
[![Hits-of-Code](https://@domain/@service/@path)](https://@domain/view/@service/@path)
[![Hits-of-Code](@base_url/@service/@path)](@base_url/view/@service/@path)
</pre>
<p>
@ -18,6 +18,6 @@ It will be rendered like this
</p>
<pre>
<a href="https://@domain/view/@service/@path"><img src="https://@domain/@service/@path" alt="example badge" /></a>
<a href="@base_url/view/@service/@path"><img src="@base_url/@service/@path" alt="example badge" /></a>
</pre>
}, version_info, repo_count)