diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-11-25 02:14:36 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-11-25 02:14:36 +0000 |
commit | 26f5baba94479c749ca3db2ad983e2b37fcf4fc9 (patch) | |
tree | dfdcdf4c2f02800d9296584053ce42cb6d45d1fb | |
parent | c725a0f16eeb0dfaff47549898540b178b7d4b48 (diff) |
Reposition album_top and album_bottom slightly
-rw-r--r-- | themes/default/views/album.html.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/default/views/album.html.php b/themes/default/views/album.html.php index 5c505ae4..739467f0 100644 --- a/themes/default/views/album.html.php +++ b/themes/default/views/album.html.php @@ -1,10 +1,10 @@ <? defined("SYSPATH") or die("No direct script access."); ?> <div id="gAlbumHeader"> - <?= $theme->album_top() ?> <h1><?= $item->title_edit ?></h1> <span class="gUnderState"><?= $item->description_edit ?></span> </div> +<?= $theme->album_top() ?> <ul id="gAlbumGrid"> <? foreach ($children as $i => $child): ?> <? $album_class = ""; ?> @@ -26,7 +26,7 @@ </ul> </li> <? endforeach ?> - <?= $theme->album_bottom() ?> </ul> +<?= $theme->album_bottom() ?> <?= $theme->pager() ?> |