Umbraco 7 - Partial View Bradcrumbs

 <h1>@CurrentPage.pageTitle</h1>
  <nav class="bread-crumb">
         <ul class="breadcrumb clearfix">
      @foreach(var level in CurrentPage.Ancestors().Where("Visible"))
{
  <li><a href="@level.Url">@level.Name</a><span class="divider"></span></li>
  }
  <li>@CurrentPage.Name</li>
            </ul>
   </nav>

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