diff options
| author | Chad Kieffer <ckieffer@gmail.com> | 2009-10-04 00:27:22 -0600 |
|---|---|---|
| committer | Chad Kieffer <ckieffer@gmail.com> | 2009-10-04 00:27:22 -0600 |
| commit | 3e6ba7acc3291f2268cbe9c9bef0a492b557babb (patch) | |
| tree | 079c1bd09ab1cfcf35524f2e541c586a95f205e4 /themes/wind/views/dynamic.html.php | |
| parent | 9145331fd420ec3fe86833a7b9567ec42f1d84e8 (diff) | |
Renamed most, if not all css selectors from gName to g-name. Moved a few shared images from wind to lib. Deleted unused images in the admin_wind. This will likely break a few ajax features.
Diffstat (limited to 'themes/wind/views/dynamic.html.php')
| -rw-r--r-- | themes/wind/views/dynamic.html.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/themes/wind/views/dynamic.html.php b/themes/wind/views/dynamic.html.php index 9ed9d69b..9d50f8a8 100644 --- a/themes/wind/views/dynamic.html.php +++ b/themes/wind/views/dynamic.html.php @@ -1,24 +1,24 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> -<div id="gAlbumHeader"> - <div id="gAlbumHeaderButtons"> +<div id="g-albumHeader"> + <div id="g-albumHeaderButtons"> <?= $theme->dynamic_top() ?> </div> <h1><?= html::clean($title) ?></h1> </div> -<ul id="gAlbumGrid"> +<ul id="g-album-grid"> <? foreach ($children as $i => $child): ?> - <li class="gItem <?= $child->is_album() ? "gAlbum" : "" ?>"> + <li class="g-item <?= $child->is_album() ? "g-album" : "" ?>"> <?= $theme->thumb_top($child) ?> <a href="<?= $child->url() ?>"> - <img id="gPhotoId-<?= $child->id ?>" class="gThumbnail" + <img id="g-photoId-<?= $child->id ?>" class="g-thumbnail" alt="photo" src="<?= $child->thumb_url() ?>" width="<?= $child->thumb_width ?>" height="<?= $child->thumb_height ?>" /> </a> <h2><?= html::purify($child->title) ?></h2> <?= $theme->thumb_bottom($child) ?> - <ul class="gMetadata"> + <ul class="g-metadata"> <?= $theme->thumb_info($child) ?> </ul> </li> |
