Files
OurUmbraco/OurUmbraco.Site/Views/MacroPartials/Members/ProfileNavigation.cshtml
T
2015-02-25 10:25:10 +01:00

19 lines
387 B
Plaintext

@inherits Umbraco.Web.Macros.PartialViewMacroPage
@{
var source = Umbraco.TypedContent(Model.MacroParameters["source"]);
}
<nav>
<ul class="level-1">
<li><a href="@source.Url"><h3>@source.Name</h3></a></li>
@foreach(var p in source.Children.Where("Visible"))
{
<li><a href="@p.Url"><h3>@p.Name</h3></a></li>
}
</ul>
</nav>