Files
gallery3/themes/default/views/dynamic.html.php

30 lines
885 B
PHP
Raw Normal View History

<?php defined("SYSPATH") or die("No direct script access.") ?>
<div id="gAlbumHeader">
<div id="gAlbumHeaderButtons">
<?= $theme->dynamic_top() ?>
</div>
<h1><?= p::clean($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" : "" ?>">
<?= $theme->thumb_top($child) ?>
<a href="<?= $child->url() ?>">
2008-12-31 07:16:38 +00:00
<img id="gPhotoId-<?= $child->id ?>" class="gThumbnail"
alt="photo" src="<?= $child->thumb_url() ?>"
width="<?= $child->thumb_width ?>"
height="<?= $child->thumb_height ?>" />
</a>
<h2><?= p::clean($child->title) ?></h2>
<?= $theme->thumb_bottom($child) ?>
<ul class="gMetadata">
<?= $theme->thumb_info($child) ?>
</ul>
</li>
<? endforeach ?>
</ul>
<?= $theme->dynamic_bottom() ?>
<?= $theme->pager() ?>