IE fixes, sidebar is now fixed in IE (we were missing a yui-g class). Removed .first class, it's not needed, at least not now. Moved all top-level layout containers to page.html.php so that if themers want to replace YUI grids with something else, like Blueprint, they only really need to edit page.html.php.

This commit is contained in:
Chad Kieffer
2008-11-09 23:03:50 +00:00
parent 24decb7fa4
commit 46a67a4b6d
7 changed files with 68 additions and 68 deletions
+25 -25
View File
@@ -1,29 +1,29 @@
<? defined("SYSPATH") or die("No direct script access."); ?>
<div id="gHeader">
<img id="gLogo" alt="<?= _("Logo") ?>" src="<?= $theme->url("images/logo.png") ?>" />
<h1><?= $item->title_edit ?></h1>
<div id="gLoginMenu">
<a href="#"><?= _("Register") ?></a> |
<a href="#"><?= _("Login") ?></a>
</div>
<img id="gLogo" alt="<?= _("Logo") ?>" src="<?= $theme->url("images/logo.png") ?>" />
<ul id="gSiteMenu">
<li><a href="index.html"><?= _("HOME") ?></a></li>
<li><a class="active" href="browse.html"><?= _("BROWSE") ?></a></li>
<li><a href="upload.html"><?= _("UPLOAD") ?></a></li>
<li><a href="upload.html"><?= _("MY GALLERY") ?></a></li>
<li><a href="#"><?= _("ADMIN") ?></a></li>
</ul>
<h1><?= $item->title_edit ?></h1>
<ul id="gBreadcrumbs">
<? foreach ($parents as $parent): ?>
<li><a href="<?= url::site("album/{$parent->id}") ?>"><?= $parent->title_edit ?></a></li>
<? endforeach ?>
<li class="active"><?= $item->title_edit ?></li>
</ul>
<form id="gSearchForm">
<input type="text" class="text" value="<?= _("Search Gallery ...") ?>"/>
<input type="submit" class="submit" value="search" />
</form>
<div id="gLoginMenu">
<a href="#"><?= _("Register") ?></a> |
<a href="#"><?= _("Login") ?></a>
</div>
<ul id="gSiteMenu">
<li><a href="index.php"><?= _("HOME") ?></a></li>
<li><a class="active" href="index.php/album/1"><?= _("BROWSE") ?></a></li>
<li><a href="#"><?= _("UPLOAD") ?></a></li>
<li><a href="#"><?= _("MY GALLERY") ?></a></li>
<li><a href="#"><?= _("ADMIN") ?></a></li>
</ul>
<ul id="gBreadcrumbs">
<? foreach ($parents as $parent): ?>
<li><a href="<?= url::site("album/{$parent->id}") ?>"><?= $parent->title_edit ?></a></li>
<? endforeach ?>
<li class="active"><?= $item->title_edit ?></li>
</ul>
<form id="gSearchForm">
<input type="text" class="text" value="<?= _("Search Gallery ...") ?>"/>
<input type="submit" class="submit" value="search" />
</form>