{namespace Confluence.Templates.Breadcrumbs} /** * Renders the breadcrumbs into the editor * @param breadcrumbs a list of breadcrumb objects * @param ellipsisIndex where the ellipsis is positioned in the trail * @param ellipsisLength how many breadcrumbs the ellipsis swallows */ {template .render} {foreach $breadcrumb in $breadcrumbs} {if index($breadcrumb) == $ellipsisIndex}
  • {/if}
  • {$breadcrumb.title}
  • {/foreach} {/template}