Skip to content

Instantly share code, notes, and snippets.

@kevsimpson
Created July 18, 2014 10:14
Show Gist options
  • Save kevsimpson/7e6710a29dabd49bc032 to your computer and use it in GitHub Desktop.
Save kevsimpson/7e6710a29dabd49bc032 to your computer and use it in GitHub Desktop.
Umbraco: site nav
@inherits Umbraco.Web.Mvc.UmbracoTemplatePage
@{
var homePage = CurrentPage.AncestorsOrSelf(1).First();
var menuItems = homePage.Children.Where("UmbracoNaviHide == false");
}
<nav id="siteNav" class="nav nav--header clearfix">
@foreach (var item in menuItems){
<a href="@item.Url" class="nav__link @item.IsAncestorOrSelf(CurrentPage, "active", "")">@item.Name</a>
}
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment