Blame view

frontend/views/site/_product.php 903 Bytes
79137940   Volodymyr   fix product modal
1
2
3
4
5
6
7
8
9
  <?php
  
  /**
   * @var Product $product
   */
  
  use common\models\Product;
  
  ?>
ccc6baf5   Volodymyr   products on main
10
11
  <div class="col-xs-6 col-sm-3 index-solution-slider__col">
      <div class="index-solution-slider__item">
79137940   Volodymyr   fix product modal
12
          <a href="#" data-toggle="modal" data-target="#cardProduct" data-image="<?= $product->image->getUrl() ?>" data-price="<?= $product->price ?>" data-sku="<?= $product->sku ?>" class="index-solution-slider__item_img">
ccc6baf5   Volodymyr   products on main
13
              <!--обрезать по высоте в 211px-->
79137940   Volodymyr   fix product modal
14
              <?= $product->image->getImg([]) ?>
ccc6baf5   Volodymyr   products on main
15
          </a>
79137940   Volodymyr   fix product modal
16
17
18
19
          <a href="#"  data-toggle="modal" data-target="#cardProduct" data-image="<?= $product->image->getUrl() ?>" data-price="<?= $product->price ?>" data-sku="<?= $product->sku ?>" class="index-solution-slider__item_link">
              <?= $product->lang->title ?>
          </a>
          <div class="index-solution-slider__item_price"><?= $product->price ?> $</div>
ccc6baf5   Volodymyr   products on main
20
21
      </div>
  </div>