Blame view

backend/views/image/gallery.php 268 Bytes
f9404a23   Administrator   Start gallery
1
2
  <?php
  
bfa22e8e   Administrator   Adding resizing a...
3
  
f9404a23   Administrator   Start gallery
4
5
6
7
8
  use yii\helpers\Html;
  
  /* @var $this yii\web\View */
  $this->title = 'Image gallery';
  ?>
bfa22e8e   Administrator   Adding resizing a...
9
10
  <?= Html::a('Download all', ['download-all']) ?>
  <div>
3ff61e27   Administrator   Adding basic gallery
11
  <?php foreach ($files as $file): ?>
bfa22e8e   Administrator   Adding resizing a...
12
13
14
  <img height="300px" src="<?= Html::encode($file) ?>">
  <?php endforeach ?>
  </div>