_new_collections_item.php 744 Bytes
<?php
use common\components\artboximage\ArtboxImageHelper;
use common\modules\product\models\Category;
use yii\helpers\Url;
use yii\widgets\ListView;
/**
 * @var Category $model
 * @var mixed $key
 * @var integer $index
 * @var ListView $widget
 */

?>

<div class="col-md-4 col-sm-6 <?php
if ($index > 5) echo "item-to-fade";
?>">
    <div class="tile_2">
        <a href="<?php echo Url::to([
            'category/collection',
            'id' => $model->category_id,
        ]); ?>">
            <div class="picture" style="background-image:url('<?php echo ArtboxImageHelper::getImageSrc($model->getImageUrl(), 'category_thumb');?>');"></div>
            <div class="title_1"><?php echo $model->name; ?></div>
        </a>
    </div>
</div>