mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-08-14 19:05:01 -04:00
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.
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user