2009-01-01 00:23:29 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2009-10-04 15:53:00 -06:00
|
|
|
<div id="g-album-header">
|
|
|
|
|
<div id="g-album-header-buttons">
|
2009-03-12 15:40:08 +00:00
|
|
|
<?= $theme->dynamic_top() ?>
|
2008-11-27 22:08:56 +00:00
|
|
|
</div>
|
2012-05-05 19:38:31 -07:00
|
|
|
<h1><?= html::purify($title) ?></h1>
|
2008-11-26 21:50:45 +00:00
|
|
|
</div>
|
|
|
|
|
|
2009-10-17 18:43:47 -06:00
|
|
|
<ul id="g-album-grid" class="ui-helper-clearfix">
|
2008-11-26 21:50:45 +00:00
|
|
|
<? foreach ($children as $i => $child): ?>
|
2009-10-04 00:27:22 -06:00
|
|
|
<li class="g-item <?= $child->is_album() ? "g-album" : "" ?>">
|
2008-12-17 04:45:35 +00:00
|
|
|
<?= $theme->thumb_top($child) ?>
|
2008-12-31 07:13:34 +00:00
|
|
|
<a href="<?= $child->url() ?>">
|
2009-10-04 15:53:00 -06:00
|
|
|
<img id="g-photo-id-<?= $child->id ?>" class="g-thumbnail"
|
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>
|
2009-08-29 22:54:20 -07:00
|
|
|
<h2><?= html::purify($child->title) ?></h2>
|
2008-12-17 04:45:35 +00:00
|
|
|
<?= $theme->thumb_bottom($child) ?>
|
2009-10-04 00:27:22 -06:00
|
|
|
<ul class="g-metadata">
|
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
|
|
|
|
2009-11-14 16:18:49 -08:00
|
|
|
<?= $theme->paginator() ?>
|