• This project
    • Loading...
  • Sign in

fe / YOHOBUYWAP · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • YOHOBUYWAP
  • template
  • www.yohobuy.com
  • partials
  • layout
  • path-nav.phtml
  • product list path nav html.Review by:@xuqi
    d3e20d76
    by xuqi
    2016-01-08 16:13:21 +0800  
    Browse Files
path-nav.phtml 588 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
{{#if pathNav}}
    <p class="path-nav">
        {{#each pathNav}}
            {{#if href}}
                <a href="{{href}}">
                    {{name}}

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

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