@using ImageBoardServerApp.Util @using System.ComponentModel.DataAnnotations @inject NavigationManager navigationManager; /@board.Tag/ - @board.Topic - BulletBoard

@board.Topic Board



Threads


@if (posts != null) { @if (posts.Any()) { @foreach(var post in posts) {
} } } else {

Loading Posts...

}
You are not logged in. Please login first.
@code { private List posts; protected override async Task OnParametersSetAsync() { try { posts = await TheManager.getPostList(board.Tag); } catch { navigationManager.NavigateTo("/sys/dead"); } } [Parameter] [Required] public BoardData board { get; set; } }