Blame view

public/hbs/product/coupon-list.hbs 311 Bytes
htoooth authored
1 2 3 4 5 6 7
{{#if body}}
    <div class="coupon-list">
        <div class="header">
            <div class="divide-line"></div>
            <div class="title">{{title}}</div>
        </div>
htoooth authored
8
        <div>
htoooth authored
9 10 11 12 13 14
            {{#each body}}
                {{>./coupon-item}}
            {{/each}}
        </div>
    </div>
{{/if}}