在home.html模板主题bigcommerce上展示品牌

时间:2017-10-16 11:57:53

标签: bigcommerce

我在我的网站上使用BigCommerce主题,我试图在主页上显示品牌。我使用下面提到的代码,但它没有给出任何输出。这是我的代码

<ul class="brandGrid">
    {{#each brands}}
        <li class="brand">
            <article class="card {{#if alternate}}card--alternate{{/if}}">
                <figure class="card-figure">
                    <a href="{{url}}">
                        <img class="card-image" src="{{getImage image 'brand_size' (cdn ../theme_settings.default_image_brand)}}" alt="{{name}}" title="{{name}}">
                    </a>
                </figure>
                <div class="card-body">
                    <h4 class="card-title">
                        <a href="{{url}}">{{name}}</a>
                    </h4>
                </div>
            </article>
        </li>
    {{/each}}
</ul>

0 个答案:

没有答案