path-nav.phtml 870 Bytes
{{#if pathNav}}
    <p class="path-nav">
        {{#each pathNav}}
            {{#if href}}
                <a href="{{href}}">
                    {{#if @last}}
                        <b>{{name}}</b>
                    {{else}}
                        {{name}}
                    {{/if}}

                    {{#unless @last}}
                        <span class="iconfont">&#xe601;</span>
                    {{/unless}}
                </a>
            {{^}}
                    {{#if @last}}
                        <b>{{name}}</b>
                    {{else}}
                        {{name}}
                    {{/if}}

                    {{#unless @last}}
                     <span>
                        <i class="iconfont">&#xe601;</i>
                     </span>
                    {{/unless}}

            {{/if}}
        {{/each}}
    </p>
{{/if}}