You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
347 B
11 lines
347 B
@page
|
|
@model IndexModel
|
|
@{
|
|
ViewData["Title"] = "The Home for Pizza Lovers";
|
|
TimeSpan timeInBusiness = DateTime.Now - new DateTime(2018, 8, 14);
|
|
}
|
|
|
|
<div class="text-center">
|
|
<h1 class="display-4">Welcome to Contoso Pizza</h1>
|
|
<p class="lead">The best pizza in town for @Convert.ToInt32(timeInBusiness.TotalDays) days!</p>
|
|
</div>
|
|
|