This post presents an example on how to transform a navigation XML with a parameterized XSLT in order to produce a simple breadcrumb.   Navigation XML  The navigation XML is produced using one of the TBBs described in earlier posts:   Generate Structure Group Navigation - Recursive TBB ;  Generate Structure Group Navigation - GetItems TBB ;  Generate Structure Group Navigation - Reorder TBB ;     Navigation XML format:   <tcm:ListItems  ID="tcm:1-1-4" Title="Root" >    <tcm:Item ID="tcm:1-2-4" Title="010 About Us" DisplayTitle="About Us" Url="/about-us">      < tcm:Item ID="tcm:1-3-64" Title="010 Who are we?" DisplayTitle="Who are we?" Url="/about-us/who-are-we.html"/ >    </tcm:Item>    < tcm:Item ID="tcm:1-4-64" Title="020 Contact Us" DisplayTitle="Contact Us" Url="/contact-us.html"/ >  </tcm:ListItems>   Bread...
talk is cheap. show me the code.