Files
LeafWeb/WebCms/Umbraco/PartialViewMacros/Templates/ListChildPagesOrderedByDate.cshtml
T
2016-11-07 12:56:17 -05:00

12 lines
327 B
Plaintext

@inherits Umbraco.Web.Macros.PartialViewMacroPage
@{ var selection = CurrentPage.Children.Where("Visible").OrderBy("CreateDate desc"); }
@* OrderBy() takes the property to sort by and optionally order desc/asc *@
<ul>
@foreach (var item in selection)
{
<li><a href="@item.Url">@item.Name</a></li>
}
</ul>