d36bdac6
Administrator
17.02.16
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
use yii\helpers\Html;
?>
<div class="gallery-box">
<a href="#" class="gallery-box-min"><?= Html::img($model->cover)?></a>
<div class="gallery-box-hidden">
<div class="gallery-box-preview">
<?php foreach($model->ShowGallery($model->photo ) as $image):?>
<span data-link="<?= $image ?>"></span>
<?php endforeach; ?>
</div>
<div class="gallery-box-big">
<?php foreach(explode(',', $model->photo ) as $image): ?>
<span data-link="<?= $model->minImg($image, 'original'); ?>"></span>
<?php endforeach; ?>
</div>
</div>
</div>
|