Skip to content

Instantly share code, notes, and snippets.

@arjanwoldring
Forked from warrenbuckley/breadcrumbs.cshtml
Created March 19, 2012 21:40
Show Gist options
  • Select an option

  • Save arjanwoldring/2127318 to your computer and use it in GitHub Desktop.

Select an option

Save arjanwoldring/2127318 to your computer and use it in GitHub Desktop.
Umbraco V5 Example - Breadcrumbs
@inherits PartialViewMacroPage
@using Umbraco.Cms.Web
@using Umbraco.Cms.Web.Macros
@using Umbraco.Framework
<ul id="breadcrumbs">
@foreach (var page in DynamicModel.Ancestors.OrderBy("Level"))
{
<li><a href="@page.Url">@page.Name</a> &raquo;</li>
}
<li>@DynamicModel.Name</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment