I am trying to get menu manager to produce breadcrumbs. I can partially do this by using:
Code: Select all
{menu action="breadcrumbs" template="bcrumb"}
but the output produces the following which has unwanted double chevrons. Setting
delimiter="" throws an error and using
{cms_breadcrumbs} doesn't give me any control over the output - I need it in a list as the site is based on twitter bootstrap.
Code: Select all
<ul class="breadcrumb">
<li><a href="http://www.sitename.co.uk/"> Home </a></li>
<li><a href="#"> » </a>
</li><li class="activeparent"> <a class="activeparent" href="http://www.sitename.co.uk/testimonials/2013-testimonials"> Testimonials </a></li>
</ul>
I cant seem to get breadcrumbs where I can control the HTML output correctly, any ideas?