summaryrefslogtreecommitdiff
path: root/core/views/admin_block_photo_stream.html.php
blob: f7889a9c886981a2ea09b4426efa1c9996c0c3a3 (plain)
1
2
3
4
5
6
7
8
9
10
<?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") ?>" title="<?= $photo->title ?>">
   <img <?= photo::img_dimensions($photo->width, $photo->height, 72) ?>
        src="<?= $photo->thumb_url() ?>" alt="<?= $photo->title ?>" />
</a>
<? endforeach ?>