@page "/gallery"
@using System.Globalization
@namespace Wabbajack.App.Blazor.Pages
@if (_errorLoadingModlists)
{
@* TODO: error *@
}
else if (!Modlists.Any())
{
@* TODO: loading *@
}
else
{
@foreach (var modlist in Modlists)
{
@modlist.Title
@modlist.Author
@modlist.Description
}
}
@if (DownloadingMetaData is not null)
{
}
@code {
public const string Route = "/gallery";
}