Blame view

common/modules/product/widgets/views/brandsCarousel.php 408 Bytes
8df80521   Alexander Karnovsky   not fixed commite
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?>"><img src="<?= $brand->image?>"></a></span></li>
              <?php endforeach?>
          </ul>
      </div>
      <div class="pc_next"></div>
  </div>