Last active
December 23, 2015 13:49
-
-
Save sleslie321/6645139 to your computer and use it in GitHub Desktop.
Umbraco 6 Razor Breadcrumb Trail
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ol class="breadcrumb"> | |
<li>You are here:</li> | |
@foreach (var ancestor in CurrentPage.Ancestors().Where("Visible")) | |
{ | |
<li><a href="@ancestor.Url" title="@ancestor.Name">@ancestor.Name</a> > </li> | |
} | |
<li class="active">@CurrentPage.Name</li> | |
</ol> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment