mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-08-03 05:31:16 -04:00
Apply buttons to comment moderation and action buttons, beginnings of a photo stream carousel block in admin dashboard.
This commit is contained in:
@@ -1,10 +1,14 @@
|
||||
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
||||
<p>
|
||||
Recent photos added to your Gallery
|
||||
</p>
|
||||
<ul>
|
||||
<? foreach ($photos as $photo): ?>
|
||||
<a href="<?= url::site("photos/$photo->id") ?>" title="<?= $photo->title ?>">
|
||||
<img <?= photo::img_dimensions($photo->width, $photo->height, 72) ?>
|
||||
<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>
|
||||
</a>
|
||||
</li>
|
||||
<? endforeach ?>
|
||||
</ul>
|
||||
<p>
|
||||
<?= t("Recent photos added to your Gallery") ?>
|
||||
</p>
|
||||
|
||||
Reference in New Issue
Block a user