Files
mixtape/zero.Demo/Pages/Index.cshtml
T

12 lines
322 B
Plaintext
Raw Normal View History

2021-12-10 23:11:26 +01:00
@page
@model IndexModel
2021-12-13 13:40:04 +01:00
@inject zero.Context.IZeroContext context
2021-12-10 23:11:26 +01:00
@{
ViewData["Title"] = "Home page";
}
<div class="text-center">
2021-12-13 13:40:04 +01:00
<h1 class="display-4">Welcome to <u>@context.AppId</u></h1>
2021-12-10 23:11:26 +01:00
<p>Learn about <a href="https://docs.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
</div>