diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2008-11-03 05:53:20 +0000 |
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2008-11-03 05:53:20 +0000 |
| commit | a089399e73cf52ebb7ac84c8db8b66db9664322b (patch) | |
| tree | 55bc27e500ca8420f86111046b12a78b3cc1ae15 /themes/default/views/page_header.html.php | |
| parent | 6da6b8ed52086d967bdb0d8e4140cbdffdb18cf7 (diff) | |
Default theme, built with YUI. A mock right now, not functional at
all (except in some very minor ways). It's unclear if this is the
best final structure. Right now the album controller knows a
considerable amount about the layout of the page, which may not be the
best way to do things.
Diffstat (limited to 'themes/default/views/page_header.html.php')
| -rw-r--r-- | themes/default/views/page_header.html.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/themes/default/views/page_header.html.php b/themes/default/views/page_header.html.php new file mode 100644 index 00000000..58eb8847 --- /dev/null +++ b/themes/default/views/page_header.html.php @@ -0,0 +1,30 @@ +<? 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 ?></h1> + + <div id="gLoginMenu"> + <a href="#"><?= _("Register") ?></a> | + <a href="#"><?= _("Login") ?> + </div> + + <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> + + <ul id="gBreadcrumbs"> + <li class="root"><a href="#">Home</a></li> + <li><a href="#">Friends & Family</a></li> + <li class="active"><span>Christmas 2007</span></li> + </ul> + + <form id="gSearchForm"> + <input type="text" class="text" value="<?= _("Search Gallery ...") ?>"/> + <input type="submit" class="submit" value="search" /> + </form> +</div> |
