Files
gallery3/modules/image_block/views/image_block_block.html.php
T

9 lines
287 B
PHP
Raw Normal View History

<?php defined("SYSPATH") or die("No direct script access.") ?>
2018-01-28 12:43:27 +01:00
<?php foreach ($items as $item): ?>
<div class="g-image-block">
<a href="<?= url::site("image_block/random/" . $item->id); ?>">
<?= $item->thumb_img(array("class" => "g-thumbnail")) ?>
</a>
</div>
2018-01-28 12:43:27 +01:00
<?php endforeach ?>