mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-22 04:19:11 -04:00
10 lines
305 B
PHP
10 lines
305 B
PHP
<? 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 ?>
|