mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-03-05 21:55:28 -05:00
9 lines
287 B
PHP
9 lines
287 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<?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>
|
|
<?php endforeach ?>
|