2009-02-26 15:02:04 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2018-01-28 12:43:27 +01:00
|
|
|
<?php foreach ($items as $item): ?>
|
2009-10-04 00:27:22 -06:00
|
|
|
<div class="g-image-block">
|
2012-05-07 11:47:19 -07:00
|
|
|
<a href="<?= url::site("image_block/random/" . $item->id); ?>">
|
2009-10-04 00:27:22 -06:00
|
|
|
<?= $item->thumb_img(array("class" => "g-thumbnail")) ?>
|
2009-02-26 15:02:04 +00:00
|
|
|
</a>
|
|
|
|
|
</div>
|
2018-01-28 12:43:27 +01:00
|
|
|
<?php endforeach ?>
|