13 lines
213 B
Plaintext
Executable File
13 lines
213 B
Plaintext
Executable File
@using eNavigator.Routes
|
|
@attribute [Route(PageRoute.Home)]
|
|
|
|
<PageTitle>Home</PageTitle>
|
|
|
|
<h1>eNavigator</h1>
|
|
|
|
|
|
@{
|
|
String today = "Today is " + DateTime.Now.ToShortDateString();
|
|
}
|
|
|
|
<h4>@today</h4> |