gallery.php 268 Bytes
<?php


use yii\helpers\Html;

/* @var $this yii\web\View */
$this->title = 'Image gallery';
?>
<?= Html::a('Download all', ['download-all']) ?>
<div>
<?php foreach ($files as $file): ?>
<img height="300px" src="<?= Html::encode($file) ?>">
<?php endforeach ?>
</div>