2009-01-01 00:23:29 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2008-12-20 01:16:46 +00:00
|
|
|
<p>
|
|
|
|
|
Recent photos added to your Gallery
|
|
|
|
|
</p>
|
2008-12-20 23:19:12 +00:00
|
|
|
<? foreach ($photos as $photo): ?>
|
2009-01-12 08:20:39 +00:00
|
|
|
<a href="<?= url::site("photos/$photo->id") ?>" title="<?= $photo->title ?>">
|
2008-12-23 01:27:50 +00:00
|
|
|
<img <?= photo::img_dimensions($photo->width, $photo->height, 72) ?>
|
2009-01-12 08:20:39 +00:00
|
|
|
src="<?= $photo->thumb_url() ?>" alt="<?= $photo->title ?>" />
|
2008-12-20 23:19:12 +00:00
|
|
|
</a>
|
|
|
|
|
<? endforeach ?>
|