16 lines
304 B
Plaintext
16 lines
304 B
Plaintext
@inherits Umbraco.Web.Macros.PartialViewMacroPage
|
|
|
|
@{ var selection = CurrentPage.Children.Where("Visible"); }
|
|
|
|
@if (selection.Any())
|
|
{
|
|
<ul>
|
|
@foreach (var item in selection)
|
|
{
|
|
<li>
|
|
<a href="@item.Url">@item.Name</a>
|
|
</li>
|
|
}
|
|
</ul>
|
|
}
|