2008-11-03 05:53:20 +00:00
|
|
|
<? defined("SYSPATH") or die("No direct script access."); ?>
|
2008-11-09 23:03:50 +00:00
|
|
|
<div id="gAlbumHeader">
|
2008-12-05 06:06:02 +00:00
|
|
|
<ul id="gItemMenu">
|
|
|
|
|
<li><?= $theme->album_top() ?></li>
|
|
|
|
|
<li><a href="#"><img src="<?= $theme->url("images/ico-view-album.png") ?>" alt="<?= _("View album") ?>" /></a></li>
|
|
|
|
|
<li><a href="#"><img src="<?= $theme->url("images/ico-view-hybrid.png") ?>" alt="<?= _("View album in hybrid mode") ?>" /></a></li>
|
|
|
|
|
<li><a href="#"><img src="<?= $theme->url("images/ico-view-slideshow.png") ?>" alt="<?= _("View slideshow") ?>" /></a></li>
|
|
|
|
|
<li><a href="#" id="gAddItemLink" class="gButtonLink">v <?= _("Options") ?></a></li>
|
|
|
|
|
</ul>
|
2008-11-08 09:28:11 +00:00
|
|
|
<h1><?= $item->title_edit ?></h1>
|
2008-12-01 01:55:50 +00:00
|
|
|
<div class="gDescription"><?= $item->description_edit ?></div>
|
2008-11-07 08:53:42 +00:00
|
|
|
</div>
|
2008-11-04 05:02:37 +00:00
|
|
|
|
2008-11-07 08:53:42 +00:00
|
|
|
<ul id="gAlbumGrid">
|
2008-11-26 21:24:46 +00:00
|
|
|
<? foreach ($children as $i => $child): ?>
|
2008-11-07 08:53:42 +00:00
|
|
|
<? $album_class = ""; ?>
|
|
|
|
|
<? if ($child->is_album()): ?>
|
|
|
|
|
<? $album_class = "gAlbum "; ?>
|
|
|
|
|
<? endif ?>
|
2008-11-09 23:03:50 +00:00
|
|
|
<li class="gItem <?= $album_class ?>">
|
2008-11-22 21:59:41 +00:00
|
|
|
<?= $theme->thumbnail_top($child) ?>
|
2008-11-19 00:12:25 +00:00
|
|
|
<a href="<?= url::site("{$child->type}s/{$child->id}") ?>">
|
2008-11-07 08:53:42 +00:00
|
|
|
<img id="gPhotoID-<?= $child->id ?>" class="gThumbnail"
|
|
|
|
|
alt="photo" src="<?= $child->thumbnail_url() ?>"
|
|
|
|
|
width="<?= $child->thumbnail_width ?>"
|
|
|
|
|
height="<?= $child->thumbnail_height ?>" />
|
|
|
|
|
</a>
|
2008-11-08 09:28:11 +00:00
|
|
|
<h2><?= $child->title_edit ?></h2>
|
2008-11-22 21:59:41 +00:00
|
|
|
<?= $theme->thumbnail_bottom($child) ?>
|
2008-11-07 08:53:42 +00:00
|
|
|
<ul class="gMetadata">
|
2008-11-22 21:59:41 +00:00
|
|
|
<?= $theme->thumbnail_info($child) ?>
|
2008-11-07 08:53:42 +00:00
|
|
|
</ul>
|
|
|
|
|
</li>
|
2008-11-06 07:20:06 +00:00
|
|
|
<? endforeach ?>
|
2008-11-07 08:53:42 +00:00
|
|
|
</ul>
|
2008-11-25 02:14:36 +00:00
|
|
|
<?= $theme->album_bottom() ?>
|
2008-11-07 08:53:42 +00:00
|
|
|
|
|
|
|
|
<?= $theme->pager() ?>
|