blob: af8d8545893221460babb63adb984004e5d0bc4f (
plain)
1
2
3
4
5
6
7
8
9
|
<? defined("SYSPATH") or die("No direct script access."); ?>
<p>
Recent photos added to your Gallery
</p>
<? foreach ($photos as $photo): ?>
<a href="<?= url::site("photos/$photo->id") ?>">
<img <?= photo::img_dimensions($photo, 72) ?> src="<?= $photo->thumb_url() ?>" alt="" />
</a>
<? endforeach ?>
|