2009-01-01 00:23:29 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2009-02-15 22:36:51 +00:00
|
|
|
<ul>
|
2008-12-20 23:19:12 +00:00
|
|
|
<? foreach ($photos as $photo): ?>
|
2009-10-04 00:27:22 -06:00
|
|
|
<li class="g-item g-photo">
|
2009-09-08 13:44:52 -07:00
|
|
|
<a href="<?= $photo->url() ?>" title="<?= html::purify($photo->title)->for_html_attr() ?>">
|
2009-02-15 22:36:51 +00:00
|
|
|
<img <?= photo::img_dimensions($photo->width, $photo->height, 72) ?>
|
2009-08-31 21:51:57 -07:00
|
|
|
src="<?= $photo->thumb_url() ?>" alt="<?= html::purify($photo->title)->for_html_attr() ?>" />
|
2009-02-15 22:36:51 +00:00
|
|
|
</a>
|
|
|
|
|
</li>
|
2008-12-20 23:19:12 +00:00
|
|
|
<? endforeach ?>
|
2009-02-15 22:36:51 +00:00
|
|
|
</ul>
|
|
|
|
|
<p>
|
|
|
|
|
<?= t("Recent photos added to your Gallery") ?>
|
|
|
|
|
</p>
|