blob: 6f961b2959a367857a0f69e2637c393a13ea31ad (
plain)
1
2
3
4
5
6
7
8
9
10
|
<? 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->width, $photo->height, 72) ?>
src="<?= $photo->thumb_url() ?>" alt="" />
</a>
<? endforeach ?>
|