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