mambax7/pedigree

View on GitHub
templates/pedigree_common_breadcrumb.tpl

Summary

Maintainability
Test Coverage
<div class="pedigree_headertable">
    <div class="pedigree_breadcrumb">
        <{foreach item=bread from=$breadcrumb name=bcloop}>
            <span class="bread">
    <{if ($bread.link)}>
        <a href="<{$bread.link}>" title="<{$bread.title}>"><{$bread.title}></a>
    <{else}>
        <{$bread.title}>
    <{/if}>
    </span>
            <{if !$smarty.foreach.bcloop.last}>
                <span class="delimiter">&gt;</span>
            <{/if}>
        <{/foreach}>
        <hr>
    </div>
</div>