_ViewStart.cshtml (default), which sets the default layout for all the views like
@{ Layout = "_Layout"; }
Shared/_Layout.cshtml (default), which specifies 4 tabs by using the following code:
Shortened |
<ul class="navbar-nav flex-grow-1">
<li class="nav-item">
<a asp-controller="Home" asp-action="Index">Home</a>
</li>
<li class="nav-item">
<a asp-controller="Home" asp-action="Books">Books</a>
</li>
<li class="nav-item">
<a asp-controller="Home" asp-action="Authors">Authors</a>
</li>
<li class="nav-item">
<a asp-controller="Home" asp-action="Privacy">Privacy</a>
</li>
</ul>
|
|
Today at the bank, an old lady asked me to help check her balance. So I pushed her over. |