mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-05 05:27:37 +08:00
16 lines
582 B
C#
16 lines
582 B
C#
<ul class="contributors-list" style="display: flex; list-style: none; margin: 0px; padding: 0px;">
|
|
@if (_avatarList != null)
|
|
{
|
|
@foreach (var item in _avatarList)
|
|
{
|
|
<Tooltip Title="@($"{LanguageService.Resources["app.content.contributors"]}:{item.Username}")">
|
|
<Unbound>
|
|
<a @ref="context.Current" target="_blank" href="@item.ProfileUrl">
|
|
<Avatar Text="@item.Username" Src="@item.Url" />
|
|
</a>
|
|
</Unbound>
|
|
</Tooltip>
|
|
}
|
|
}
|
|
</ul>
|