feat: added QR Code to index
fix: fixed language in index Signed-off-by: limited_dev <loginakkisativ@gmail.com>
This commit is contained in:
parent
73be698399
commit
64c4c92cb1
2 changed files with 10 additions and 4 deletions
|
@ -3,7 +3,7 @@
|
||||||
@using ImageBoardServerApp.Data.Repository
|
@using ImageBoardServerApp.Data.Repository
|
||||||
@inject AuthenticationStateProvider authStateProvider
|
@inject AuthenticationStateProvider authStateProvider
|
||||||
|
|
||||||
<h1>BulletBoard @ver</h1>
|
<h1>BulletBoards @ver</h1>
|
||||||
<p>
|
<p>
|
||||||
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>.
|
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>.
|
||||||
<br/>
|
<br/>
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
Check out the project on <a href="https://git.limited-dev.de/eric/imageboard">Gitlab</a>.
|
Check out the project on <a href="https://git.limited-dev.de/eric/imageboard">Gitlab</a>.
|
||||||
<br>
|
<br>
|
||||||
<br/>
|
<br/>
|
||||||
We're currently @amountOfUsers User(s), viewing @amountOfPosts Post(s) with @amountOfComments Comment(s).
|
We're currently @amountOfUsers users, viewing @amountOfPosts post with @amountOfComments comment.
|
||||||
<br/>
|
<br/>
|
||||||
Click here to:
|
Click here to:
|
||||||
<AuthorizeView>
|
<AuthorizeView>
|
||||||
|
@ -25,12 +25,18 @@
|
||||||
</Authorized>
|
</Authorized>
|
||||||
<NotAuthorized>
|
<NotAuthorized>
|
||||||
<a href="/sys/register">Create an account to start posting</a>
|
<a href="/sys/register">Create an account to start posting</a>
|
||||||
<a> </a>
|
<a>
|
||||||
|
 
|
||||||
|
</a>
|
||||||
or
|
or
|
||||||
<a> </a>
|
<a> </a>
|
||||||
<a href="/sys/login">Log into your account</a>
|
<a href="/sys/login">Log into your account</a>
|
||||||
</NotAuthorized>
|
</NotAuthorized>
|
||||||
</AuthorizeView>
|
</AuthorizeView>
|
||||||
|
|
||||||
|
<br/>
|
||||||
|
<br/>
|
||||||
|
<img src="img/static/sys/qr.png" alt="QR CODE"/>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
@code{
|
@code{
|
||||||
|
|
|
@ -6,7 +6,7 @@ namespace ImageBoardServerApp.Util;
|
||||||
|
|
||||||
public class TheManager
|
public class TheManager
|
||||||
{
|
{
|
||||||
public static string version = "v1.0.0-rc1";
|
public static string version = "v1.0.0-rc2";
|
||||||
|
|
||||||
private static long getDiff(PostData post)
|
private static long getDiff(PostData post)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue