home_goods_list.html 708 B

1234567891011121314151617
  1. <section class="container">
  2. <h3 style="text-align:center;">{$title}</h3>
  3. <hr class="featurette-divider">
  4. <div class="row">
  5. <ul class="clearfix col-md-12">
  6. <volist name="products" id="d">
  7. <li class="col-md-3 col-sm-6">
  8. <a href="{:U('/goods/'.$d['goods_id'])}" class="img-thumbnail center-block"><img class="img-responsive center-block" src="__ROOT__/{$d.image}" title="{$d.name}" alt="{$d.name}"></a>
  9. <p class="goods_title text-center text-uppercase">{$d.name}</p>
  10. <p class="product-item_price font-additional font-weight-normal customColor">¥{$d.price}</p>
  11. </li>
  12. </volist>
  13. </ul>
  14. </div>
  15. </section>