Blame view

common/modules/product/widgets/views/brandsCarousel.php 498 Bytes
8df80521   Alexander Karnovsky   not fixed commite
1
2
3
4
5
  <div class="slider_prod">
      <div class="pc_prev"></div>
      <div class="prods_carousel">
          <ul>
              <?php foreach($brands as $brand) :?>
1f90c5f4   Karnovsky A   ArtboxImage resizer
6
              <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>
8df80521   Alexander Karnovsky   not fixed commite
7
8
9
10
11
              <?php endforeach?>
          </ul>
      </div>
      <div class="pc_next"></div>
  </div>