blob: e8a4d9332538aa8184b77a6d01d55c5f678ce8e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<ul>
<? foreach ($photos as $photo): ?>
<li class="gItem gPhoto">
<a href="<?= url::site("photos/$photo->id") ?>" title="<?= $photo->title ?>">
<img <?= photo::img_dimensions($photo->width, $photo->height, 72) ?>
src="<?= $photo->thumb_url() ?>" alt="<?= $photo->title ?>" />
</a>
</li>
<? endforeach ?>
</ul>
<p>
<?= t("Recent photos added to your Gallery") ?>
</p>
|