Files
Umbraco-CMS/src/Umbraco.Web.UI/Umbraco/PartialViewMacros/Templates/ListChildPagesOrderedByDate.cshtml

12 lines
338 B
Plaintext
Raw Normal View History

2013-11-07 17:16:22 +01:00
@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 *@
2013-11-07 17:16:22 +01:00
<ul>
@foreach (var item in selection)
{
<li><a href="@item.Url">@item.Name</a></li>
2013-11-07 17:16:22 +01:00
}
</ul>