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.
29 lines
430 B
29 lines
430 B
@model TestViewModel
|
|
@{
|
|
|
|
}
|
|
|
|
@* Render section *@
|
|
@section Scripts {
|
|
<h1 style="color:red">I am scripts section!</h1>
|
|
}
|
|
|
|
<h1>Hello Razor Template</h1>
|
|
<h2>@DateTime.Now This value come from C#</h2>
|
|
<h3>@(1 + 1)</h3>
|
|
|
|
@if (Model.Names.Count < 5)
|
|
{
|
|
<h1>a little bit of data</h1>
|
|
}
|
|
else
|
|
{
|
|
<h1>a lot of data</h1>
|
|
}
|
|
|
|
<ul>
|
|
@for (int i = 0; i < Model.Names.Count; i++)
|
|
{
|
|
<li>@Model.Names[i]</li>
|
|
}
|
|
</ul> |