mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-23 04:52:22 +00:00
18 lines
519 B
Plaintext
18 lines
519 B
Plaintext
<MudNavMenu>
|
|
<MudNavLink Icon="@(Icons.Material.Outlined.NavigateBefore)" OnClick="NavigateBack">Back</MudNavLink>
|
|
<MudDivider />
|
|
@if (OrderedTorrents is null)
|
|
{
|
|
@for (var i = 0; i < 10; i++)
|
|
{
|
|
<MudSkeleton Animation="Animation.Pulse" Width="100%" Height="25px" />
|
|
}
|
|
}
|
|
else
|
|
{
|
|
foreach (var torrent in OrderedTorrents)
|
|
{
|
|
<MudNavLink Href="@("/details/" + torrent.Hash)">@torrent.Name</MudNavLink>
|
|
}
|
|
}
|
|
</MudNavMenu> |