10 lines
263 B
Smarty
10 lines
263 B
Smarty
|
|
<ol class="breadcrumb">
|
||
|
|
{foreach $breadcrumb as $item}
|
||
|
|
<li{if $item@last} class="active"{/if}>
|
||
|
|
{if !$item@last}<a href="{$item.link}">{/if}
|
||
|
|
{$item.label}
|
||
|
|
{if !$item@last}</a>{/if}
|
||
|
|
</li>
|
||
|
|
{/foreach}
|
||
|
|
</ol>
|