2009-01-01 00:23:29 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2008-11-26 21:50:45 +00:00
|
|
|
<div id="gAlbumHeader">
|
2008-11-27 22:08:56 +00:00
|
|
|
<div id="gAlbumHeaderButtons">
|
2009-03-12 15:40:08 +00:00
|
|
|
<?= $theme->dynamic_top() ?>
|
2008-11-27 22:08:56 +00:00
|
|
|
</div>
|
2008-11-26 21:50:45 +00:00
|
|
|
<h1><?= $tag->name ?></h1>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<ul id="gAlbumGrid">
|
|
|
|
|
<? foreach ($children as $i => $child): ?>
|
2009-02-10 04:29:39 +00:00
|
|
|
<li class="gItem <?= $child->is_album() ? "gAlbum" : "" ?>">
|
2008-12-17 04:45:35 +00:00
|
|
|
<?= $theme->thumb_top($child) ?>
|
2008-12-31 07:13:34 +00:00
|
|
|
<a href="<?= $child->url() ?>">
|
2008-12-31 07:16:38 +00:00
|
|
|
<img id="gPhotoId-<?= $child->id ?>" class="gThumbnail"
|
2008-12-17 04:45:35 +00:00
|
|
|
alt="photo" src="<?= $child->thumb_url() ?>"
|
|
|
|
|
width="<?= $child->thumb_width ?>"
|
|
|
|
|
height="<?= $child->thumb_height ?>" />
|
2008-11-26 21:50:45 +00:00
|
|
|
</a>
|
2008-12-24 00:20:26 +00:00
|
|
|
<h2><?= $child->title ?></h2>
|
2008-12-17 04:45:35 +00:00
|
|
|
<?= $theme->thumb_bottom($child) ?>
|
2008-11-26 21:50:45 +00:00
|
|
|
<ul class="gMetadata">
|
2008-12-17 04:45:35 +00:00
|
|
|
<?= $theme->thumb_info($child) ?>
|
2008-11-26 21:50:45 +00:00
|
|
|
</ul>
|
|
|
|
|
</li>
|
|
|
|
|
<? endforeach ?>
|
|
|
|
|
</ul>
|
2009-03-12 15:40:08 +00:00
|
|
|
<?= $theme->dynamic_bottom() ?>
|
2008-11-26 21:50:45 +00:00
|
|
|
|
|
|
|
|
<?= $theme->pager() ?>
|