discount.php
1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
    /**
     * @var Product[] $products
     * @var View      $this
     */
    use common\modules\product\models\Product;
    use yii\web\View;
    use common\components\artboximage\ArtboxImageHelper;
    use yii\helpers\Url;
    use common\widgets\Seo;
    $this->params[ 'breadcrumbs' ][] = 'Акции';
    $this->params[ 'seo' ][ Seo::TITLE ] = 'Акции';
?>
<div class="col-md-12">
    <div class="title8">Акции</div>
    <div class="actions_cont">
        <?php
            foreach($products as $product) {
                ?>
                <div class="col-md-3 action">
                    <a href="<?php echo Url::to([
                        'catalog/product',
                        'product' => $product->alias,
                        'variant' => $product->variant->sku,
                    ]) ?>">
                        <div class="picture"><?php echo ArtboxImageHelper::getImage($product->getImageUrl(), 'category_thumb'); ?></div>
                        <div class="a_down">
                            <div class="price"><?php echo $product->variant->price; ?>
                                <span> €</span></div>
                            <div class="titles">
                                <div class="line1"><?php echo $product->name; ?></div>
                                <div class="line2"><?php echo $product->category->name; ?></div>
                            </div>
                        </div>
                    </a>
                </div>
            <?php } ?>
        <div style="clear:both;"></div>
    </div>
    
    <div class="down act_d">
        <h1 class="d_title"><?php echo Seo::widget(['row' => Seo::H1]);?></h1>
        <div class="simple-spoiler just-closed" style="height: 50px">
            <div class="spoiler-inner"><?php echo Seo::widget(['row' => Seo::SEO_TEXT]);?></div>
        </div>
        <div class="just-more">
            <a href="#">Узнать больше</a>
        </div>
    </div>
</div>