Index.cshtml
1 @page
2 @model IndexModel
3 @{
4 ViewData["Title"] = "Home page";
5 }
6
7 <div class="text-center">
8 <h1 class="display-4">Welcome</h1>
9 <p>Learn about <a href="https://learn.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
10 </div>