@inherits umbraco.MacroEngines.DynamicNodeContext @* This snippet makes a breadcrumb of parents using an unordred html list. How it works: - It uses the Ancestors() method to get all parents and then generates links so the visitor get go back - Finally it outputs the name of the current page (without a link) *@ @if (Model.Ancestors().Any()) {
}