@page "/" @using ImageBoardServerApp.Util @using ImageBoardServerApp.Data.Repository @inject AuthenticationStateProvider authStateProvider

BulletBoards @ver

This is a simple imageboard made in Razor Server.
This project was made by Pierre, Jennifer and Eric.
This project is licensed under the GPL-3.0.
Click here to learn more about free software.
Check out the project on GitLab.

We're currently @amountOfUsers users, viewing @amountOfPosts posts with @amountOfComments comments.
Click here to: Edit your account information Create an account to start posting or Log into your account

QR CODE

@code{ private int amountOfPosts = -1; private int amountOfComments = -1; private int amountOfUsers = -1; public string ver { get; set; } = TheManager.version; protected override async Task OnParametersSetAsync() { var posts = await PostsRepository.getPostsAsync(); amountOfPosts = posts.Count; var comments = await CommentsRepository.getCommentsAsync(); amountOfComments = comments.Count; var users = await UsersRepository.getUsersAsync(); amountOfUsers = users.Count; await base.OnParametersSetAsync(); } }