$nav.breadcrumbs
is a sequential collection of navigational elements that shows all of the parent sections of the current section.see also {foreach}, {if}{else}{/if}, {include}.
Sample Usage: (e.g. breadcrumb.tpl)
<a href="{$root}">Home</a>
{foreach item="navigational_element" from=$nav.breadcrumbs}
/ <a href="{$root}{$navigational_element.link}">
{$navigational_element.title}
</a>
{/foreach}
<!-- Uncomment this to see what properties you have available-->
{*$archive->dump($navigational_element)*}
HTML Source Output
<a href="../../../../../index.php">Home</a> /Note: Some of the source output has been condensed for the sake of clarity in this html document.
<a href="../../../../../Documentation/index.php">Documentation</a> /
<a href="../../../../../Documentation/Web.Designer/index.php">Web Designer</a> /
<a href="../../../../../Documentation/Web.Designer/Navigation.Element/index.php">
Navigation Element</a> /
<a href="../../../../../rbcms//Documentation/Web.Designer/Navigation.Element...">
$nav</a> /
<a href="../../../../../Documentation/Web.Designer/Navigation.Element/...">
.breadcrumbs</a>
Browser Output
Home / Documentation / Web Designer / Navigation Element / $nav / .breadcrumb