22 lines
439 B
Plaintext
22 lines
439 B
Plaintext
@{
|
|
ViewData["Title"] = "Home Page";
|
|
}
|
|
|
|
@section Style {
|
|
<style>
|
|
.text-center {
|
|
margin-top: 50px;
|
|
}
|
|
</style>
|
|
}
|
|
|
|
<div class="text-center">
|
|
<h1 class="display-4">Welcome</h1>
|
|
<p>Learn about <a href="https://learn.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
|
|
</div>
|
|
|
|
@section Scripts {
|
|
<script>
|
|
console.log("Hello from the Index page!");
|
|
</script>
|
|
} |