feat: started working on stickys and locking, started working on replying in threads, added banners, added autism board, other small changes

This commit is contained in:
limited_dev 2023-02-25 00:08:36 +01:00
parent d8fcc93394
commit 5fdebe3fc1
18 changed files with 132 additions and 35 deletions

View file

@ -7,7 +7,7 @@
<span>This is a simple Imageboard made in Razor.</span>
<br/>
<span>We're currently hosting @amountOfPosts Threads, @amountOfComments Comments and @amountOfUsers Users.</span>
<sr/>
<br/>
<span>@Details</span>
<AuthorizeView>
<Authorized>

View file

@ -1,4 +1,4 @@
@page "/m/"
@page "/e/"
<Board board="@m"/>
@ -8,7 +8,7 @@
{
BoardID = 0,
maxThreads = 10,
Tag = "m",
Topic = "Main"
Tag = "e",
Topic = "Everything"
};
}

View file

@ -0,0 +1,14 @@
@page "/au/"
<Board board="@m"/>
@code {
private BoardData m { get; set; } = new()
{
BoardID = 0,
maxThreads = 10,
Tag = "au",
Topic = "Autism"
};
}