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:
parent
d8fcc93394
commit
5fdebe3fc1
18 changed files with 132 additions and 35 deletions
|
@ -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>
|
||||
|
|
|
@ -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"
|
||||
};
|
||||
}
|
14
ImageBoardServerApp/Pages/Boards/E.razor
Normal file
14
ImageBoardServerApp/Pages/Boards/E.razor
Normal 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"
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue