Blame view

apps/home/views/partial/path.hbs 309 Bytes
weiqingting authored
1 2 3 4 5 6 7 8 9 10 11 12 13
<p class="home-path">
    <span class="path-icon"></span>
    {{#each path}}
        {{#unless @first}}
            &nbsp;&nbsp;>&nbsp;&nbsp;
        {{/unless}}
        {{#if href}}
            <a href="{{href}}">{{name}}</a>
        {{^}}
            <span>{{name}}</span>
        {{/if}}
    {{/each}}
</p>