Blame view

template/www.yohobuy.com/partials/brand/brand-list.phtml 560 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
{{#each category}}
    <dl class="clearfix" name="{{@key}}">
        <dt>{{@key}}</dt>
        <dd>
            <ul class="clearfix">
                {{#each this}}
                <li>
                    <a class="{{hot}}" data-key="{{key}}" href="{{href}}" target="_blank">
                        <span>{{name}}</span>
                    </a>
                    {{# hot}}
                    <i class="iconfont">&#xe632;</i>
                    {{/ hot}}
                </li>
                {{/each}}
            </ul>
        </dd>
    </dl>
{{/each}}