feat: added images for ban screen, added reportscreen, added reportsscreen for mods & admins
This commit is contained in:
parent
75d75a2c84
commit
cb7ca62590
43 changed files with 358 additions and 46 deletions
15
ImageBoardServerApp/Pages/Boards/Art.razor
Normal file
15
ImageBoardServerApp/Pages/Boards/Art.razor
Normal file
|
@ -0,0 +1,15 @@
|
|||
@page "/art/"
|
||||
|
||||
<img class="banner" src="img/static/banner/mban.png" alt="No Banner found"/>
|
||||
<Board board="@m"/>
|
||||
|
||||
@code {
|
||||
|
||||
private BoardData m { get; set; } = new()
|
||||
{
|
||||
BoardID = 0,
|
||||
maxThreads = 10,
|
||||
Tag = "art",
|
||||
Topic = "Art"
|
||||
};
|
||||
}
|
7
ImageBoardServerApp/Pages/Boards/Art.razor.css
Normal file
7
ImageBoardServerApp/Pages/Boards/Art.razor.css
Normal file
|
@ -0,0 +1,7 @@
|
|||
.banner{
|
||||
justify-content: center;
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
width: 50%;
|
||||
}
|
|
@ -1,6 +1,4 @@
|
|||
@page "/m/"
|
||||
@using System.ComponentModel.DataAnnotations
|
||||
@using ImageBoardServerApp.Data
|
||||
|
||||
<img class="banner" src="img/static/banner/mban.png" alt="No Banner found"/>
|
||||
<Board board="@m"/>
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
.banner{
|
||||
justify-content: center;
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
width: 50%;
|
||||
}
|
15
ImageBoardServerApp/Pages/Boards/Tec.razor
Normal file
15
ImageBoardServerApp/Pages/Boards/Tec.razor
Normal file
|
@ -0,0 +1,15 @@
|
|||
@page "/tec/"
|
||||
|
||||
<img class="banner" src="img/static/banner/mban.png" alt="No Banner found"/>
|
||||
<Board board="@m"/>
|
||||
|
||||
@code {
|
||||
|
||||
private BoardData m { get; set; } = new()
|
||||
{
|
||||
BoardID = 0,
|
||||
maxThreads = 10,
|
||||
Tag = "tec",
|
||||
Topic = "Technology"
|
||||
};
|
||||
}
|
7
ImageBoardServerApp/Pages/Boards/Tec.razor.css
Normal file
7
ImageBoardServerApp/Pages/Boards/Tec.razor.css
Normal file
|
@ -0,0 +1,7 @@
|
|||
.banner{
|
||||
justify-content: center;
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
width: 50%;
|
||||
}
|
15
ImageBoardServerApp/Pages/Boards/Vg.razor
Normal file
15
ImageBoardServerApp/Pages/Boards/Vg.razor
Normal file
|
@ -0,0 +1,15 @@
|
|||
@page "/vg/"
|
||||
|
||||
<img class="banner" src="img/static/banner/mban.png" alt="No Banner found"/>
|
||||
<Board board="@m"/>
|
||||
|
||||
@code {
|
||||
|
||||
private BoardData m { get; set; } = new()
|
||||
{
|
||||
BoardID = 0,
|
||||
maxThreads = 10,
|
||||
Tag = "vg",
|
||||
Topic = "Video Games"
|
||||
};
|
||||
}
|
7
ImageBoardServerApp/Pages/Boards/Vg.razor.css
Normal file
7
ImageBoardServerApp/Pages/Boards/Vg.razor.css
Normal file
|
@ -0,0 +1,7 @@
|
|||
.banner{
|
||||
justify-content: center;
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
width: 50%;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue