dotcms breadcrumbs
## Get the Nav item for the current folder #set($current = $navtool.getNav()) ## Build the list of folders to display in the crumbtrail #set($crumb = $contents.getEmptyList()) #set($_x=$crumb.add(0,$current)) #foreach($item in [1..25]) #set($current = $current.parent) #if($current.title=="System folder") #break #end #set($_x=$crumb.add(0,$current)) #end ## Display the crumbtrail <ul> <li style="display:inline"><a href="/">Home</a></li> #foreach($item in $crumb) <li style="display:inline"> <a href="$item.href">$item.title</a> </li> #end </ul>