@model TestViewModel
@{
}
@* Render section *@
@section Scripts {
I am scripts section!
}
Hello Razor Template
@DateTime.Now This value come from C#
@(1 + 1)
@if (Model.Names.Count < 5)
{
a little bit of data
}
else
{
a lot of data
}
@for (int i = 0; i < Model.Names.Count; i++)
{
- @Model.Names[i]
}