Umbraco 9 - Left hand sub page navigation code snippet.

Umbraco 9 - Left hand sub page navigation code C# RAZOR snippet. 

The code below can be used for left hand navigation in Umbraco 9 to create left hand/sub page navigation. 

Instructions: 

  1. Create a partial _leftHandNavigation 
  2. Reference the partial in your Umbraco template, like this: @Html.Partial("_leftHandNavigation")

Code:

@inherits Umbraco.Web.Mvc.UmbracoViewPage
@{
var selection = Model.AncestorOrSelf(2)
.Children()
.Where(x => x.IsVisible());
}
<ul class="list-group listy">
<li><a href="@Model.AncestorOrSelf(2).Url" class="head list-group-item">@Model.AncestorOrSelf(2).Name </a></li>
@foreach (var item in selection)
{
if(item.Id == Model.Id)
{
<li>
<a href="@item.Url" class="list-group-item current">@item.Name</a>
</li>
}
else
{
<li>
<a href="@item.Url" class="list-group-item">@item.Name</a>
</li>
}
}
</ul>

Example output:




https://www.buymeacoffee.com/markdevelopment/umbraco-side-bar-left-hand-navigation

Comments

Popular posts from this blog

Umbraco - Reset the Admin Password via SQL Server

Create a .NET Contact Form that Gets the Last Url Visited in C# Can also be Used in Umbraco

Umbraco Macro for IFrame when Embedding Video, Vimeo Universal Player, or other types of IFrame on to a Page XSLT version and Razor Version