feat: improved index
Signed-off-by: limited_dev <loginakkisativ@gmail.com>
This commit is contained in:
parent
712ac3c020
commit
2a73df7f58
1 changed files with 26 additions and 12 deletions
|
@ -3,20 +3,34 @@
|
||||||
@inject AuthenticationStateProvider authStateProvider
|
@inject AuthenticationStateProvider authStateProvider
|
||||||
|
|
||||||
<h1>BulletBoard</h1>
|
<h1>BulletBoard</h1>
|
||||||
<span>This is a simple Imageboard made in Razor.</span>
|
<p>
|
||||||
<br/>
|
This is a simple <a href="https://en.wiktionary.org/wiki/imageboard">imageboard</a> made in <a href="https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor">Razor Server</a>.
|
||||||
<span>We're currently hosting @amountOfPosts Threads, @amountOfComments Comments and @amountOfUsers Users.</span>
|
<br/>
|
||||||
<br/>
|
This project was made by Pierre, Jennifer and Eric.
|
||||||
<span>@Details</span>
|
<br/>
|
||||||
<AuthorizeView>
|
This project is licensed under the <a href="https://www.gnu.org/licenses/gpl-3.0.en.html#license-text">GPL-3.0</a>.
|
||||||
<Authorized>
|
<br/>
|
||||||
<br/>
|
Click <a href="https://www.gnu.org/philosophy/free-sw.en.html">here</a> to learn more about free software.
|
||||||
<a href="/sys/you">Edit your account</a>
|
<br/>
|
||||||
</Authorized>
|
<br>
|
||||||
</AuthorizeView>
|
We're currently @amountOfUsers User(s), viewing @amountOfPosts Post(s) with @amountOfComments Comment(s).
|
||||||
|
<br/>
|
||||||
|
Click here to:
|
||||||
|
<AuthorizeView>
|
||||||
|
<Authorized>
|
||||||
|
<a href="/sys/you">Edit your account information</a>
|
||||||
|
</Authorized>
|
||||||
|
<NotAuthorized>
|
||||||
|
<a href="/sys/register">Create an account to start posting</a>
|
||||||
|
<a> </a>
|
||||||
|
or
|
||||||
|
<a> </a>
|
||||||
|
<a href="/sys/login">Log into your account</a>
|
||||||
|
</NotAuthorized>
|
||||||
|
</AuthorizeView>
|
||||||
|
</p>
|
||||||
|
|
||||||
@code{
|
@code{
|
||||||
private string Details { get; set; }
|
|
||||||
|
|
||||||
private int amountOfPosts = -1;
|
private int amountOfPosts = -1;
|
||||||
private int amountOfComments = -1;
|
private int amountOfComments = -1;
|
||||||
|
|
Loading…
Reference in a new issue