Blame view

common/modules/product/widgets/views/brandsCarousel.php 508 Bytes
4253cbec   root   first commit
1
2
3
4
5
6
7
8
9
10
11
  <div class="slider_prod">

      <div class="pc_prev"></div>

      <div class="prods_carousel">

          <ul>

              <?php foreach($brands as $brand) :?>

              <li><span><a href="<?= \yii\helpers\Url::to('/brands/'. $brand->alias)?>" title="<?= $brand->name?>"><?= $brand->imageFile ? \common\components\artboximage\ArtboxImageHelper::getImage($brand->imageFile, 'brandlist') : ''?></a></span></li>

              <?php endforeach?>

          </ul>

      </div>

      <div class="pc_next"></div>

  </div>