12 lines
282 B
Plaintext
12 lines
282 B
Plaintext
@inherits Umbraco.Web.Mvc.UmbracoTemplatePage
|
|
|
|
@{ var selection = CurrentPage.Children.Where("Visible").OrderBy("Name"); }
|
|
@* OrderBy() takes the property to sort by *@
|
|
|
|
<ul>
|
|
@foreach (var item in selection)
|
|
{
|
|
<li><a href="@item.Url">@item.Name</a></li>
|
|
}
|
|
</ul>
|