ASPTemplate/Pages/Index.cshtml
2023-04-08 12:48:27 +02:00

18 lines
469 B
Plaintext

@page
@using ASPTemplate.Backend.Utils
@model IndexModel
@{
ViewData["Title"] = "Home";
}
<div class="text-center">
<h1 class="display-4">
Welcome
</h1>
<p>
This is the default landing page of <a href="@ApplicationInformation.Repository">@ApplicationInformation.Project</a>, a work in progress ASP.NET Core project by <a href="https://zotan.pw">~zotan</a>.
<br/>
Expect to see something more useful here once project development continues.
</p>
</div>