Skip to content

Instantly share code, notes, and snippets.

@AhmedMozaly
Last active November 24, 2016 14:05
@model List<MyNameSpace.HomeIndexViewModel>
@{
ViewBag.Title = "News Page";
}
<h2>Homepage News</h2>
<ul>
@foreach (var n in Model.HomepageNews)
{
<li>n.Title</li>
}
</ul>
@{Html.RenderPartial("_LatestNews",Model.LatestNews);}
@{Html.RenderPartial("_PopularVideos", Model.PopularVideos);}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment