mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 21:47:38 +08:00
10 lines
412 B
C#
10 lines
412 B
C#
<span id="github-btn" class="github-btn">
|
|
<a class="gh-btn" href="@($"//github.com/{_org}/{_repo}")" target="_blank">
|
|
<span class="gh-ico" aria-hidden="true"></span>
|
|
<span class="gh-text">Star</span>
|
|
</a>
|
|
@if (_starCount > 0)
|
|
{
|
|
<a class="gh-count" target="_blank" href="@($"//github.com/{_org}/{_repo}/stargazers")" style="display: block;">@_starCount</a>
|
|
}
|
|
</span> |